2018-05-27 06:34:05 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-12-02 09:47:57 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-05-27 06:34:05 +00:00
|
|
|
package="com.topjohnwu.magisk">
|
|
|
|
|
2019-03-08 15:16:02 +00:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2019-10-12 07:57:56 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2019-03-08 15:16:02 +00:00
|
|
|
|
|
|
|
<application tools:ignore="GoogleAppIndexingWarning"
|
|
|
|
android:allowBackup="true">
|
|
|
|
|
2018-05-27 06:34:05 +00:00
|
|
|
<activity
|
2018-12-02 09:47:57 +00:00
|
|
|
android:name=".MainActivity"
|
2018-05-27 06:34:05 +00:00
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2018-06-13 18:31:31 +00:00
|
|
|
|
2019-03-08 15:16:02 +00:00
|
|
|
</application>
|
2018-06-13 18:31:31 +00:00
|
|
|
</manifest>
|