AndroidManifest.xml 1.6 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.recorder"
  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="RecorderActivity"
  12. android:label="@string/app_name"
  13. android:screenOrientation="landscape"
  14. android:configChanges="keyboardHidden|orientation">
  15. <intent-filter>
  16. <action android:name="android.intent.action.MAIN" />
  17. <category android:name="android.intent.category.LAUNCHER" />
  18. </intent-filter>
  19. </activity>
  20. </application>
  21. <supports-screens android:resizeable="true"
  22. android:smallScreens="true"
  23. android:normalScreens="true"
  24. android:largeScreens="true"
  25. android:anyDensity="true" />
  26. <uses-permission android:name="android.permission.CAMERA"/>
  27. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  28. <uses-feature android:name="android.hardware.camera" android:required="false"/>
  29. <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
  30. <uses-feature android:name="android.hardware.camera.front" android:required="false"/>
  31. <uses-feature android:name="android.hardware.camera.front.autofocus" android:required="false"/>
  32. </manifest>