2016-08-05 16:58:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-07-17 16:59:22 +00: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 21:47:54 +00: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-09 07:45:15 +00:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2016-08-05 16:58:05 +00:00
|
|
|
|
|
|
|
<application
|
2018-06-02 14:00:52 +00:00
|
|
|
android:name=".MagiskManager"
|
2018-02-11 19:18:57 +00:00
|
|
|
android:allowBackup="false"
|
2018-05-27 06:34:05 +00:00
|
|
|
android:directBootAware="true"
|
2018-06-02 15:12:02 +00:00
|
|
|
android:icon="@drawable/ic_launcher"
|
2016-08-05 16:58:05 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
2017-09-15 10:03:25 +00:00
|
|
|
tools:ignore="UnusedAttribute">
|
2017-02-06 22:02:06 +00:00
|
|
|
|
2016-08-27 11:02:41 +00:00
|
|
|
<provider
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
|
android:authorities="com.topjohnwu.magisk.provider"
|
2016-09-20 05:05:41 +00:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
2016-08-27 11:02:41 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2016-09-22 21:47:54 +00:00
|
|
|
android:resource="@xml/file_paths" />
|
2016-08-27 11:02:41 +00:00
|
|
|
</provider>
|
2016-08-31 21:52:42 +00:00
|
|
|
|
2016-08-05 16:58:05 +00:00
|
|
|
</application>
|
|
|
|
|
2017-07-17 16:59:22 +00:00
|
|
|
</manifest>
|