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