Path: blob/master/modules/java/test/android_test/AndroidManifest.xml
16338 views
<?xml version="1.0" encoding="utf-8"?>1<manifest xmlns:android="http://schemas.android.com/apk/res/android"2package="org.opencv.test"3android:versionCode="1"4android:versionName="1.0">56<uses-sdk android:minSdkVersion="8" />78<!-- We add an application tag here just so that we can indicate that9this package needs to link against the android.test library,10which is needed when building test cases. -->11<application>12<uses-library android:name="android.test.runner" />13</application>14<!--15This declares that this application uses the instrumentation test runner targeting16the package of org.opencv. To run the tests use the command:17"adb shell am instrument -w org.opencv.test/android.test.InstrumentationTestRunner"18-->19<instrumentation android:name="org.opencv.test.OpenCVTestRunner"20android:targetPackage="org.opencv.test"21android:label="Tests for org.opencv"/>2223<uses-permission android:name="android.permission.CAMERA"/>24<uses-feature android:name="android.hardware.camera" />25<uses-feature android:name="android.hardware.camera.autofocus" />26<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>27</manifest>282930