c44c20f3
吴启风
feat:集成先声sdk andr...
|
1
2
|
<manifest xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android">
|
2a29701f
liangchengyou
feat:提交代码
|
3
4
5
|
<application
android:label="wow_english"
android:name="${applicationName}"
|
a38a01d4
吴启风
feat:android原生设置隐...
|
6
7
|
android:icon="@mipmap/ic_launcher"
android:usesCleartextTraffic="true">
|
2a29701f
liangchengyou
feat:提交代码
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
|
119ba920
liangchengyou
feat:视频播放器
|
35
|
<uses-permission android:name="android.permission.INTERNET"/>
|
c44c20f3
吴启风
feat:集成先声sdk andr...
|
36
37
38
39
40
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
tools:ignore="ScopedStorage" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
2a29701f
liangchengyou
feat:提交代码
|
41
|
</manifest>
|