1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="org.opencv.samples.cameracalibration"
4 android:versionCode="1"
5 android:versionName="1.0">
8 android:label="@string/app_name"
9 android:icon="@drawable/icon"
10 android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
12 <activity android:name="CameraCalibrationActivity"
13 android:label="@string/app_name"
14 android:screenOrientation="landscape"
15 android:configChanges="keyboardHidden|orientation">
17 <action android:name="android.intent.action.MAIN" />
18 <category android:name="android.intent.category.LAUNCHER" />
23 <supports-screens android:resizeable="true"
24 android:smallScreens="true"
25 android:normalScreens="true"
26 android:largeScreens="true"
27 android:anyDensity="true" />
29 <uses-sdk android:minSdkVersion="8" />
31 <uses-permission android:name="android.permission.CAMERA"/>
33 <uses-feature android:name="android.hardware.camera" android:required="false"/>
34 <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
35 <uses-feature android:name="android.hardware.camera.front" android:required="false"/>
36 <uses-feature android:name="android.hardware.camera.front.autofocus" android:required="false"/>