2016-08-05 16:58:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-08-17 11:00:55 +00:00
|
|
|
<manifest package="com.topjohnwu.magisk"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
2016-08-05 16:58:05 +00: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 11:00:55 +00:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
2016-08-05 16:58:05 +00:00
|
|
|
|
2016-08-17 11:00:55 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
2016-08-05 16:58:05 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2016-08-17 11:00:55 +00:00
|
|
|
<activity android:name=".ModulesActivity">
|
|
|
|
</activity>
|
2016-08-05 16:58:05 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|