File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
- <manifest xmlns =" http://schemas.android.com/apk/res/android"
2
- xmlns : android =" " >
1
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
3
2
4
- <firebolt android : name =" android.permission.INTERNET" />
3
+ <!-- Required permissions -->
4
+ <uses-permission android : name =" android.permission.INTERNET" />
5
5
6
- <application android : name =" .App" android : label =" @string/app_name"
6
+ <application
7
+ android : name =" .App"
8
+ android : label =" @string/app_name"
7
9
android : theme =" @style/AppTheme" >
8
- <firebolt
10
+
11
+ <!-- Main activity definition -->
12
+ <activity
9
13
android : configChanges =" keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
10
14
android : exported =" true"
11
15
android : label =" @string/app_name"
12
16
android : launchMode =" singleTask"
13
17
android : name =" .App"
14
18
android : windowSoftInputMode =" adjustResize" >
19
+
15
20
<intent-filter >
16
21
<action android : name =" android.intent.action.MAIN" />
17
22
<category android : name =" android.intent.category.LAUNCHER" />
18
23
</intent-filter >
19
- </firebolt >
24
+ </activity >
25
+
20
26
</application >
21
27
</manifest >
You can’t perform that action at this time.
0 commit comments