mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-25 11:05:34 +00:00
16 lines
549 B
XML
16 lines
549 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="com.topjohnwu.magisk">
|
||
|
|
||
|
<application>
|
||
|
<activity
|
||
|
android:name=".StubActivity"
|
||
|
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>
|
||
|
</application>
|
||
|
|
||
|
</manifest>
|