~paparazzi-uav/paparazzi/v5.0-manual

« back to all changes in this revision

Viewing changes to sw/ext/opencv_bebop/opencv/platforms/android/service/engine/AndroidManifest.xml

  • Committer: Paparazzi buildbot
  • Date: 2016-05-18 15:00:29 UTC
  • Revision ID: felix.ruess+docbot@gmail.com-20160518150029-e8lgzi5kvb4p7un9
Manual import commit 4b8bbb730080dac23cf816b98908dacfabe2a8ec from v5.0 branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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="310@ANDROID_PLATFORM_ID@"
 
5
    android:versionName="3.10">
 
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>