AndroidManifest.xml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="org.opencv.engine"
  4. android:versionCode="345@ANDROID_PLATFORM_ID@"
  5. android:versionName="3.45">
  6. <uses-sdk android:minSdkVersion="@ANDROID_NATIVE_API_LEVEL@" android:targetSdkVersion="22"/>
  7. <uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
  8. <application
  9. android:icon="@drawable/icon"
  10. android:label="@string/app_name" android:allowBackup="true">
  11. <service android:exported="true" android:name="OpenCVEngineService" android:process=":OpenCVEngineProcess">
  12. <intent-filter>
  13. <action android:name="org.opencv.engine.BIND"></action>
  14. </intent-filter>
  15. </service>
  16. <activity
  17. android:name="org.opencv.engine.manager.ManagerActivity"
  18. android:label="@string/app_name"
  19. android:screenOrientation="portrait">
  20. <intent-filter>
  21. <action android:name="android.intent.action.MAIN" />
  22. <category android:name="android.intent.category.LAUNCHER" />
  23. </intent-filter>
  24. </activity>
  25. </application>
  26. </manifest>