AndroidManifest.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="org.opencv.samples.tutorial1"
  4. >
  5. <application
  6. android:label="@string/app_name"
  7. android:icon="@drawable/icon"
  8. android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
  9. <activity
  10. android:exported="true"
  11. android:name="Tutorial1Activity"
  12. android:label="@string/app_name"
  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. <supports-screens android:resizeable="true"
  21. android:smallScreens="true"
  22. android:normalScreens="true"
  23. android:largeScreens="true"
  24. android:anyDensity="true" />
  25. <!--[camera_permissions]-->
  26. <uses-permission android:name="android.permission.CAMERA"/>
  27. <uses-feature android:name="android.hardware.camera" android:required="false"/>
  28. <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
  29. <uses-feature android:name="android.hardware.camera.front" android:required="false"/>
  30. <uses-feature android:name="android.hardware.camera.front.autofocus" android:required="false"/>
  31. <!--[camera_permissions]-->
  32. </manifest>