25 lines
913 B
XML
25 lines
913 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<uses-feature android:name="android.hardware.camera.any" android:required="false" />
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<application
|
|
android:name=".CleanScannerApp"
|
|
android:allowBackup="true"
|
|
android:icon="@android:drawable/ic_menu_camera"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@android:drawable/ic_menu_camera"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.CleanScanner">
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|