Home | History | Annotate | Download | only in 15-puzzle
      1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      2     package="org.opencv.samples.puzzle15"
      3     android:versionCode="1"
      4     android:versionName="1.0" >
      5 
      6     <uses-sdk android:minSdkVersion="8"/>
      7 
      8     <application
      9         android:icon="@drawable/icon"
     10         android:label="@string/app_name"
     11         android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
     12 
     13         <activity
     14             android:name=".Puzzle15Activity"
     15             android:label="@string/app_name"
     16             android:screenOrientation="landscape"
     17             android:configChanges="keyboardHidden|orientation" >
     18 
     19             <intent-filter>
     20                 <action android:name="android.intent.action.MAIN" />
     21 
     22                 <category android:name="android.intent.category.LAUNCHER" />
     23             </intent-filter>
     24         </activity>
     25     </application>
     26 
     27     <uses-permission android:name="android.permission.CAMERA"/>
     28 
     29     <uses-feature android:name="android.hardware.camera" android:required="false"/>
     30     <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
     31     <uses-feature android:name="android.hardware.camera.front" android:required="false"/>
     32     <uses-feature android:name="android.hardware.camera.front.autofocus" android:required="false"/>
     33 
     34 </manifest>