Android CameraX

From bibbleWiki
Revision as of 02:52, 6 March 2025 by Iwiseman (talk | contribs) (Created page with "=Introduction= Already had this working for my Food app but this is now broken so watching a tutorial and thought I better take notes =Setupn= Make sure we give permissions in the Manifest <syntaxhighlight lang="xml"> <uses-feature android:name="android.hardware.camera" android:required="false" /> <uses-permission android:name="android.permission.CAMERA" /> </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Introduction

Already had this working for my Food app but this is now broken so watching a tutorial and thought I better take notes

Setupn

Make sure we give permissions in the Manifest

    <uses-feature
        android:name="android.hardware.camera"
        android:required="false" />

    <uses-permission android:name="android.permission.CAMERA" />