20 lines
605 B
XML
20 lines
605 B
XML
<?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="24"
|
|
android:targetSdkVersion="36" />
|
|
|
|
<instrumentation
|
|
android:name="androidx.test.runner.AndroidJUnitRunner"
|
|
android:functionalTest="false"
|
|
android:handleProfiling="false"
|
|
android:label="Tests for org.opencv.test"
|
|
android:targetPackage="org.opencv.test" />
|
|
|
|
<application
|
|
android:debuggable="true"
|
|
android:extractNativeLibs="false" />
|
|
|
|
</manifest> |