AndroidManifest.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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:exported="true"
  10. android:name=".Puzzle15Activity"
  11. android:label="@string/app_name"
  12. android:screenOrientation="landscape"
  13. android:configChanges="keyboardHidden|orientation" >
  14. <intent-filter>
  15. <action android:name="android.intent.action.MAIN" />
  16. <category android:name="android.intent.category.LAUNCHER" />
  17. </intent-filter>
  18. </activity>
  19. </application>
  20. <uses-permission android:name="android.permission.CAMERA"/>
  21. <uses-feature android:name="android.hardware.camera" android:required="false"/>
  22. <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
  23. <uses-feature android:name="android.hardware.camera.front" android:required="false"/>
  24. <uses-feature android:name="android.hardware.camera.front.autofocus" android:required="false"/>
  25. </manifest>