2018-11-06 01:39:09 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-11-28 18:30:46 +08:00
|
|
|
package="org.opencv.samples.opencv_mobilenet">
|
2018-11-06 01:39:09 +08:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:label="@string/app_name"
|
2023-11-28 18:30:46 +08:00
|
|
|
android:icon="@drawable/icon">
|
|
|
|
|
2022-10-23 20:11:10 +08:00
|
|
|
<activity
|
|
|
|
android:exported="true"
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:screenOrientation="landscape"> <!--Screen orientation-->
|
2018-11-06 01:39:09 +08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
<!--Allow to use a camera-->
|
|
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
|
|
|
<uses-feature android:name="android.hardware.camera" android:required="false"/>
|
|
|
|
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
|
|
|
|
<uses-feature android:name="android.hardware.camera.front" android:required="false"/>
|
|
|
|
<uses-feature android:name="android.hardware.camera.front.autofocus" android:required="false"/>
|
|
|
|
|
|
|
|
</manifest>
|