AndroidManifest.xml 1.04 KB
Newer Older
Andrey Pavlenko's avatar
Andrey Pavlenko committed
1 2 3
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="org.opencv.engine"
4 5
    android:versionCode="17"
    android:versionName="1.7" >
Andrey Pavlenko's avatar
Andrey Pavlenko committed
6 7

    <uses-sdk android:minSdkVersion="8" />
8
    <uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
Andrey Pavlenko's avatar
Andrey Pavlenko committed
9 10 11 12 13 14 15 16 17 18

    <application
        android:icon="@drawable/icon"
        android:label="@string/app_name" >

    <service android:exported="true" android:name="OpenCVEngineService" android:process=":OpenCVEngineProcess">
    	<intent-filter>
    		<action android:name="org.opencv.engine.BIND"></action>
    	</intent-filter>
    </service>
19

20
    <activity
21 22 23
        android:name="org.opencv.engine.manager.ManagerActivity"
        android:label="@string/app_name"
        android:screenOrientation="portrait">
Andrey Pavlenko's avatar
Andrey Pavlenko committed
24 25 26 27
        <intent-filter>
        	<action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
28
    </activity>
29

Andrey Pavlenko's avatar
Andrey Pavlenko committed
30 31
</application>
</manifest>