mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.2 KiB
32 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
|
package="org.opencv.samples.tutorial4" |
|
android:versionCode="1" |
|
android:versionName="1.0" > |
|
|
|
<uses-sdk |
|
android:minSdkVersion="14" |
|
android:targetSdkVersion="21" /> |
|
|
|
<uses-feature android:glEsVersion="0x00020000" android:required="true"/> |
|
<uses-feature android:name="android.hardware.camera"/> |
|
<uses-feature android:name="android.hardware.camera2" android:required="false"/> |
|
<uses-permission android:name="android.permission.CAMERA"/> |
|
|
|
<application |
|
android:allowBackup="true" |
|
android:icon="@drawable/icon" |
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > |
|
<activity |
|
android:name=".Tutorial4Activity" |
|
android:label="@string/app_name" |
|
android:screenOrientation="landscape" |
|
android:configChanges="keyboardHidden|orientation"> |
|
<intent-filter> |
|
<action android:name="android.intent.action.MAIN" /> |
|
<category android:name="android.intent.category.LAUNCHER" /> |
|
</intent-filter> |
|
</activity> |
|
</application> |
|
|
|
</manifest>
|
|
|