Home | History | Annotate | Download | only in face-detection
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3           package="org.opencv.samples.facedetect"
      4           android:versionCode="21"
      5           android:versionName="2.1">
      6 
      7     <application
      8         android:label="@string/app_name"
      9         android:icon="@drawable/icon"
     10         android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
     11 
     12         <activity android:name="FdActivity"
     13                   android:label="@string/app_name"
     14                   android:screenOrientation="landscape"
     15                   android:configChanges="keyboardHidden|orientation">
     16             <intent-filter>
     17                 <action android:name="android.intent.action.MAIN" />
     18                 <category android:name="android.intent.category.LAUNCHER" />
     19             </intent-filter>
     20         </activity>
     21     </application>
     22 
     23     <supports-screens android:resizeable="true"
     24                       android:smallScreens="true"
     25                       android:normalScreens="true"
     26                       android:largeScreens="true"
     27                       android:anyDensity="true" />
     28 
     29     <uses-sdk android:minSdkVersion="8" />
     30 
     31     <uses-permission android:name="android.permission.CAMERA"/>
     32 
     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"/>
     37 
     38 </manifest>
     39