mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-01-12 18:43:36 +00:00
18 lines
642 B
XML
18 lines
642 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.topjohnwu.shared">
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
|
|
|
<application
|
|
android:label="Magisk Manager"
|
|
android:installLocation="internalOnly"
|
|
android:usesCleartextTraffic="true"
|
|
android:supportsRtl="true"
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar"
|
|
tools:ignore="UnusedAttribute">
|
|
</application>
|
|
|
|
</manifest>
|