2011-06-30 11:29:35 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-06-30 16:16:14 +02:00
|
|
|
package="org.opencv.test"
|
2011-06-30 11:29:35 +02:00
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
2011-06-30 16:16:14 +02:00
|
|
|
|
2011-06-30 11:29:35 +02:00
|
|
|
<uses-sdk android:minSdkVersion="8" />
|
2011-07-05 16:03:28 +02:00
|
|
|
<instrumentation android:targetPackage="org.opencv.test" android:name="OpenCVTestRunner"></instrumentation>
|
|
|
|
|
2011-06-30 11:29:35 +02:00
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
2011-06-30 16:16:14 +02:00
|
|
|
<uses-library android:name="android.test.runner" />
|
2011-06-30 11:29:35 +02:00
|
|
|
</application>
|
2011-07-07 16:35:12 +02:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
|
|
|
<uses-feature android:name="android.hardware.camera" />
|
|
|
|
<uses-feature android:name="android.hardware.camera.autofocus" />
|
|
|
|
|
2011-06-30 11:29:35 +02:00
|
|
|
</manifest>
|