Skip to content

Commit a0a5211

Browse files
authored
AndroidManifest.xml
1 parent b57963c commit a0a5211

1 file changed

Lines changed: 22 additions & 1 deletion

File tree

app/src/main/AndroidManifest.xml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,22 @@
1-
<manifest ...> <application ...> ... </application> </manifest>
1+
<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

Comments
 (0)