We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b57963c commit a0a5211Copy full SHA for a0a5211
1 file changed
app/src/main/AndroidManifest.xml
@@ -1 +1,22 @@
1
-<manifest ...> <application ...> ... </application> </manifest>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
+ package="com.geekneuron.subpilot">
3
+
4
+ <application
5
+ android:allowBackup="true"
6
+ android:icon="@mipmap/ic_launcher"
7
+ android:label="SubPilot"
8
+ android:roundIcon="@mipmap/ic_launcher_round"
9
+ android:supportsRtl="true"
10
+ android:theme="@style/Theme.SubPilot">
11
12
+ <activity android:name=".MainActivity"
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>
19
20
+ </application>
21
22
+</manifest>
0 commit comments