AndroidManifest.xml 1.2 KB

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