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="3000" 5 android:versionName="3.00"> 6 7 <uses-sdk android:minSdkVersion="@ANDROID_NATIVE_API_LEVEL@" android:targetSdkVersion="22"/> 8 <uses-feature android:name="android.hardware.touchscreen" android:required="false"/> 9 10 <application 11 android:icon="@drawable/icon" 12 android:label="@string/app_name" android:allowBackup="true"> 13 14 <service android:exported="true" android:name="OpenCVEngineService" android:process=":OpenCVEngineProcess"> 15 <intent-filter> 16 <action android:name="org.opencv.engine.BIND"></action> 17 </intent-filter> 18 </service> 19 20 <activity 21 android:name="org.opencv.engine.manager.ManagerActivity" 22 android:label="@string/app_name" 23 android:screenOrientation="portrait"> 24 <intent-filter> 25 <action android:name="android.intent.action.MAIN" /> 26 <category android:name="android.intent.category.LAUNCHER" /> 27 </intent-filter> 28 </activity> 29 </application> 30 </manifest> 31