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

« back to all changes in this revision

Viewing changes to sw/ext/opencv_bebop/opencv/samples/android/tutorial-4-opencl/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.samples.tutorial4"
 
4
    android:versionCode="1"
 
5
    android:versionName="1.0" >
 
6
 
 
7
    <uses-sdk
 
8
        android:minSdkVersion="14"
 
9
        android:targetSdkVersion="21" />
 
10
 
 
11
    <uses-feature android:glEsVersion="0x00020000" android:required="true"/>
 
12
    <uses-feature android:name="android.hardware.camera"/>
 
13
    <uses-feature android:name="android.hardware.camera2" android:required="false"/>
 
14
    <uses-permission android:name="android.permission.CAMERA"/>
 
15
 
 
16
    <application
 
17
        android:allowBackup="true"
 
18
        android:icon="@drawable/icon"
 
19
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
 
20
        <activity
 
21
            android:name=".Tutorial4Activity"
 
22
            android:label="@string/app_name"
 
23
            android:screenOrientation="landscape"
 
24
            android:configChanges="keyboardHidden|orientation">
 
25
            <intent-filter>
 
26
                <action android:name="android.intent.action.MAIN" />
 
27
                <category android:name="android.intent.category.LAUNCHER" />
 
28
            </intent-filter>
 
29
        </activity>
 
30
    </application>
 
31
 
 
32
</manifest>