|
| 1 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | + package="com.example.video"> |
| 3 | + <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
| 4 | + <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
| 5 | + <uses-permission android:name="android.permission.INTERNET" /> |
| 6 | + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 7 | + <uses-permission android:name="android.permission.CAMERA" /> |
| 8 | + <uses-permission android:name="android.permission.BLUETOOTH" /> |
| 9 | + <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> |
| 10 | + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 11 | + <uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
| 12 | + <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 13 | + <application |
| 14 | + android:label="video" |
| 15 | + android:name="${applicationName}" |
| 16 | + android:icon="@mipmap/ic_launcher"> |
| 17 | + <activity |
| 18 | + android:name=".MainActivity" |
| 19 | + android:exported="true" |
| 20 | + android:launchMode="singleTop" |
| 21 | + android:theme="@style/LaunchTheme" |
| 22 | + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" |
| 23 | + android:hardwareAccelerated="true" |
| 24 | + android:windowSoftInputMode="adjustResize"> |
| 25 | + <!-- Specifies an Android theme to apply to this Activity as soon as |
| 26 | + the Android process has started. This theme is visible to the user |
| 27 | + while the Flutter UI initializes. After that, this theme continues |
| 28 | + to determine the Window background behind the Flutter UI. --> |
| 29 | + <meta-data |
| 30 | + android:name="io.flutter.embedding.android.NormalTheme" |
| 31 | + android:resource="@style/NormalTheme" |
| 32 | + /> |
| 33 | + <intent-filter> |
| 34 | + <action android:name="android.intent.action.MAIN"/> |
| 35 | + <category android:name="android.intent.category.LAUNCHER"/> |
| 36 | + </intent-filter> |
| 37 | + </activity> |
| 38 | + <!-- Don't delete the meta-data below. |
| 39 | + This is used by the Flutter tool to generate GeneratedPluginRegistrant.java --> |
| 40 | + <meta-data |
| 41 | + android:name="flutterEmbedding" |
| 42 | + android:value="2" /> |
| 43 | + </application> |
| 44 | +</manifest> |
0 commit comments