AndroidManifest.xml 1.47 KB
Newer Older
1 2 3 4
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sobot.moduletest">

郑娜伟 committed
5
    <uses-permission android:name="android.permission.INTERNET" />
6 7 8 9 10 11
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.RECORD_AUDIO" />
    <!-- To handle the reselection within the app on Android 14 (API level 34) -->
    <uses-permission android:name="android.permission.READ_MEDIA_VISUAL_USER_SELECTED" />
12 13

    <application
郑娜伟 committed
14
        android:name=".MyApp"
15 16 17 18 19
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true">
郑娜伟 committed
20 21
        <activity
            android:name=".MainActivity"
zhengnw@sobot.com committed
22
            android:exported="true"
zhengnw@sobot.com committed
23
            android:theme="@style/sobot_activity_def_theme"
郑娜伟 committed
24
            android:configChanges="orientation|keyboardHidden|screenSize|touchscreen|navigation|locale|fontScale|uiMode|screenLayout|smallestScreenSize">
25 26 27 28 29 30 31 32 33
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>