AndroidManifest.xml 1.5 KB

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