Skip to content

Commit 8d57abc

Browse files
committed
Fix
1 parent 2664dc2 commit 8d57abc

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

app/src/AndroidManifest.xml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
1-
<manifest xmlns="http://schemas.android.com/apk/res/android"
2-
xmlns:android="">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32

4-
<firebolt android:name="android.permission.INTERNET" />
3+
<!-- Required permissions -->
4+
<uses-permission android:name="android.permission.INTERNET" />
55

6-
<application android:name=".App" android:label="@string/app_name"
6+
<application
7+
android:name=".App"
8+
android:label="@string/app_name"
79
android:theme="@style/AppTheme">
8-
<firebolt
10+
11+
<!-- Main activity definition -->
12+
<activity
913
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
1014
android:exported="true"
1115
android:label="@string/app_name"
1216
android:launchMode="singleTask"
1317
android:name=".App"
1418
android:windowSoftInputMode="adjustResize">
19+
1520
<intent-filter>
1621
<action android:name="android.intent.action.MAIN" />
1722
<category android:name="android.intent.category.LAUNCHER" />
1823
</intent-filter>
19-
</firebolt>
24+
</activity>
25+
2026
</application>
2127
</manifest>

0 commit comments

Comments
 (0)