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