Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hackassin
GitHub Repository: hackassin/learnopencv
Path: blob/master/DNN-OpenCV-Classification-Android/img_classification_android/app/src/main/AndroidManifest.xml
3443 views
1
<?xml version="1.0" encoding="utf-8"?>
2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
package="com.learnopencv.tutorials.classification">
4
5
<application
6
android:allowBackup="true"
7
android:icon="@mipmap/ic_launcher"
8
android:label="@string/app_name"
9
android:roundIcon="@mipmap/ic_launcher_round"
10
android:supportsRtl="true"
11
android:theme="@style/Theme.AppCompat.NoActionBar"> <!--Full screen mode-->
12
<activity
13
android:name=".MainActivity"
14
android:screenOrientation="landscape"> <!--Screen 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
22
<supports-screens android:resizeable="true"
23
android:smallScreens="true"
24
android:normalScreens="true"
25
android:largeScreens="true"
26
android:anyDensity="true" />
27
28
<!--Camera usage configuration-->
29
<uses-permission android:name="android.permission.CAMERA" />
30
31
<uses-feature
32
android:name="android.hardware.camera"
33
android:required="false" />
34
<uses-feature
35
android:name="android.hardware.camera.autofocus"
36
android:required="false" />
37
<uses-feature
38
android:name="android.hardware.camera.front"
39
android:required="false" />
40
<uses-feature
41
android:name="android.hardware.camera.front.autofocus"
42
android:required="false" />
43
44
</manifest>
45
46
47