Skip to content

Commit 2664dc2

Browse files
committed
Fix
1 parent 179cab9 commit 2664dc2

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

app/src/AndroidManifest.xml

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

3-
<uses-permission android:name="android.permission.INTERNET" />
4+
<firebolt android:name="android.permission.INTERNET" />
45

56
<application android:name=".App" android:label="@string/app_name"
67
android:theme="@style/AppTheme">
7-
<activity
8-
android:name=".App"
9-
android:label="@string/app_name"
8+
<firebolt
109
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
10+
android:exported="true"
11+
android:label="@string/app_name"
1112
android:launchMode="singleTask"
12-
android:windowSoftInputMode="adjustResize"
13-
android:exported="true">
13+
android:name=".App"
14+
android:windowSoftInputMode="adjustResize">
1415
<intent-filter>
1516
<action android:name="android.intent.action.MAIN" />
1617
<category android:name="android.intent.category.LAUNCHER" />
1718
</intent-filter>
18-
</activity>
19+
</firebolt>
1920
</application>
2021
</manifest>

0 commit comments

Comments
 (0)