AndroidManifest.xml 1.5 KB

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