Skip to content

Commit 179cab9

Browse files
committed
Fix
1 parent b16bb3b commit 179cab9

File tree

1 file changed

+14
-18
lines changed

1 file changed

+14
-18
lines changed

app/src/AndroidManifest.xml

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,19 @@
22

33
<uses-permission android:name="android.permission.INTERNET" />
44

5-
<application
6-
android:name=".App"
7-
android:label="@string/app_name"
8-
android:roundIcon="@mipmap/ic_launcher_round"
9-
android:allowBackup="false"
10-
android:theme="@style/AppTheme">
11-
<activity
12-
android:name=".MainActivity"
13-
android:label="@string/app_name"
14-
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
15-
android:launchMode="singleTask"
16-
android:windowSoftInputMode="adjustResize"
17-
android:exported="true">
18-
<intent-filter>
19-
<action android:name="android.intent.action.MAIN" />
20-
<category android:name="android.intent.category.LAUNCHER" />
21-
</intent-filter>
22-
</activity>
5+
<application android:name=".App" android:label="@string/app_name"
6+
android:theme="@style/AppTheme">
7+
<activity
8+
android:name=".App"
9+
android:label="@string/app_name"
10+
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
11+
android:launchMode="singleTask"
12+
android:windowSoftInputMode="adjustResize"
13+
android:exported="true">
14+
<intent-filter>
15+
<action android:name="android.intent.action.MAIN" />
16+
<category android:name="android.intent.category.LAUNCHER" />
17+
</intent-filter>
18+
</activity>
2319
</application>
2420
</manifest>

0 commit comments

Comments
 (0)