2020-01-05 18:46:23 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.opencv.test" >
|
|
|
|
|
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="15"
|
|
|
|
android:targetSdkVersion="29" />
|
|
|
|
|
|
|
|
<instrumentation
|
|
|
|
android:name="android.test.InstrumentationTestRunner"
|
|
|
|
android:functionalTest="false"
|
|
|
|
android:handleProfiling="false"
|
|
|
|
android:label="Tests for org.opencv.test"
|
|
|
|
android:targetPackage="org.opencv.test" />
|
|
|
|
|
2020-01-23 23:22:52 +01:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera"
|
|
|
|
android:required="false" />
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera.autofocus"
|
|
|
|
android:required="false" />
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera.front"
|
|
|
|
android:required="false" />
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera.front.autofocus"
|
|
|
|
android:required="false" />
|
|
|
|
|
2020-01-05 18:46:23 +01:00
|
|
|
<application android:debuggable="true" >
|
|
|
|
<uses-library android:name="android.test.runner" />
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|