Magisk/app/src/main/AndroidManifest.xml

22 lines
735 B
XML
Raw Normal View History

2016-08-05 18:58:05 +02:00
<?xml version="1.0" encoding="utf-8"?>
2016-08-17 13:00:55 +02:00
<manifest package="com.topjohnwu.magisk"
xmlns:android="http://schemas.android.com/apk/res/android">
2016-08-05 18:58:05 +02:00
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
2016-08-17 13:00:55 +02:00
<action android:name="android.intent.action.MAIN"/>
2016-08-05 18:58:05 +02:00
2016-08-17 13:00:55 +02:00
<category android:name="android.intent.category.LAUNCHER"/>
2016-08-05 18:58:05 +02:00
</intent-filter>
</activity>
2016-08-17 13:00:55 +02:00
<activity android:name=".ModulesActivity">
</activity>
2016-08-05 18:58:05 +02:00
</application>
</manifest>