Magisk/app/src/stub/AndroidManifest.xml

23 lines
765 B
XML
Raw Normal View History

2018-05-27 08:34:05 +02:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.topjohnwu.magisk">
<application>
<activity
2018-06-10 08:51:37 +02:00
android:name=".NoUIActivity"
2018-05-27 08:34:05 +02: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 20:31:31 +02:00
<receiver android:name=".receivers.BootLauncher">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
2018-05-27 08:34:05 +02:00
</application>
2018-06-13 20:31:31 +02:00
</manifest>