AndroidManifest.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="org.opencv.samples.puzzle15"
  4. >
  5. <application
  6. android:icon="@drawable/icon"
  7. android:label="@string/app_name">
  8. <activity
  9. android:name=".Puzzle15Activity"
  10. android:label="@string/app_name"
  11. android:screenOrientation="landscape"
  12. android:configChanges="keyboardHidden|orientation" >
  13. <intent-filter>
  14. <action android:name="android.intent.action.MAIN" />
  15. <category android:name="android.intent.category.LAUNCHER" />
  16. </intent-filter>
  17. </activity>
  18. </application>
  19. <uses-permission android:name="android.permission.CAMERA"/>
  20. <uses-feature android:name="android.hardware.camera" android:required="false"/>
  21. <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
  22. <uses-feature android:name="android.hardware.camera.front" android:required="false"/>
  23. <uses-feature android:name="android.hardware.camera.front.autofocus" android:required="false"/>
  24. </manifest>