flutter_barcode_reader/android/src/main/AndroidManifest.xml
dustin 5e50563aaf [Fixes #47] Add Camera permission to library Android manifest
Makes integration into host applications easier
Removed the camera permission from the example to demonstrate
2018-09-06 11:28:16 -07:00

10 lines
307 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yourcompany.barcodescan">
<uses-permission android:name="android.permission.CAMERA" />
<application>
<activity android:name="com.apptreesoftware.barcodescan.BarcodeScannerActivity" />
</application>
</manifest>