zbar-windows/android/examples/CameraTest/AndroidManifest.xml
a1346054 9037004f22 Several files: fix whitespace
* trim trailing whitespace
* trim excess whitespace
* indentation

Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
2022-05-29 18:31:57 +02:00

20 lines
875 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.sourceforge.zbar.android.CameraTest"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<application android:label="@string/app_name" >
<activity android:name="CameraTestActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>