2016-08-06 00:58:05 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-07-18 00:59:22 +08:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="com.topjohnwu.magisk">
|
2016-09-22 16:47:54 -05:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2018-06-14 02:31:31 +08:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2016-08-06 00:58:05 +08:00
|
|
|
|
|
|
|
<application
|
2018-02-12 03:18:57 +08:00
|
|
|
android:allowBackup="false"
|
2018-05-27 14:34:05 +08:00
|
|
|
android:directBootAware="true"
|
2018-06-02 23:12:02 +08:00
|
|
|
android:icon="@drawable/ic_launcher"
|
2016-08-06 00:58:05 +08:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
2017-09-15 18:03:25 +08:00
|
|
|
tools:ignore="UnusedAttribute">
|
2017-02-07 06:02:06 +08:00
|
|
|
|
2016-08-27 19:02:41 +08:00
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
|
android:authorities="com.topjohnwu.magisk.provider"
|
2016-09-20 00:05:41 -05:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
2016-08-27 19:02:41 +08:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2016-09-22 16:47:54 -05:00
|
|
|
android:resource="@xml/file_paths" />
|
2016-08-27 19:02:41 +08:00
|
|
|
</provider>
|
2016-08-31 16:52:42 -05:00
|
|
|
|
2016-08-06 00:58:05 +08:00
|
|
|
</application>
|
|
|
|
|
2017-07-18 00:59:22 +08:00
|
|
|
</manifest>
|