2016-08-05 16:58:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-09-20 05:05:41 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-09-22 21:47:54 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
|
|
|
package="com.topjohnwu.magisk">
|
|
|
|
|
|
|
|
<uses-sdk tools:overrideLibrary="com.kcoppock.broadcatsttilesupport" />
|
|
|
|
|
|
|
|
<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" />
|
2016-09-15 21:59:34 +00:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.PACKAGE_USAGE_STATS"
|
2016-09-22 21:47:54 +00:00
|
|
|
tools:ignore="ProtectedPermissions" />
|
2016-08-05 16:58:05 +00:00
|
|
|
|
|
|
|
<application
|
2016-09-19 21:48:13 +00:00
|
|
|
|
2016-08-05 16:58:05 +00:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
2016-08-21 15:21:37 +00:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
|
2016-09-19 21:48:13 +00:00
|
|
|
<service
|
2016-09-20 16:36:33 +00:00
|
|
|
android:name=".services.MonitorService"
|
2016-09-20 05:05:41 +00:00
|
|
|
android:label="@string/accessibility_service_name"
|
2016-09-19 21:48:13 +00:00
|
|
|
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
|
|
|
|
<intent-filter>
|
2016-09-22 21:47:54 +00:00
|
|
|
<action android:name="android.accessibilityservice.AccessibilityService" />
|
2016-09-19 21:48:13 +00:00
|
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.accessibilityservice"
|
2016-09-22 21:47:54 +00:00
|
|
|
android:resource="@xml/accessibilityservice" />
|
2016-09-19 21:48:13 +00:00
|
|
|
</service>
|
2016-09-20 05:05:41 +00:00
|
|
|
<service
|
2016-09-22 04:36:28 +00:00
|
|
|
android:name=".services.TileServiceNewApi"
|
2016-09-20 05:05:41 +00:00
|
|
|
android:icon="@drawable/ic_autoroot"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
|
|
|
<intent-filter>
|
2016-09-22 21:47:54 +00:00
|
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
2016-09-20 05:05:41 +00:00
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2016-09-20 16:36:33 +00:00
|
|
|
<receiver
|
2016-09-21 12:39:12 +00:00
|
|
|
android:name=".receivers.PrivateBroadcastReceiver"
|
2016-09-20 22:01:20 +00:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true">
|
2016-09-20 16:36:33 +00:00
|
|
|
<intent-filter>
|
2016-09-22 21:47:54 +00:00
|
|
|
<action android:name="com.topjohnwu.magisk.CUSTOMTILE_ACTION_AUTOROOT" />
|
|
|
|
<action android:name="com.topjohnwu.magisk.CUSTOMTILE_ACTION_DISABLEROOT" />
|
|
|
|
<action android:name="com.topjohnwu.magisk.CUSTOMTILE_ACTION_ENABLEROOT" />
|
2016-09-20 16:36:33 +00:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2016-08-21 15:21:37 +00:00
|
|
|
<activity
|
|
|
|
android:name=".WelcomeActivity"
|
2016-09-20 05:05:41 +00:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:exported="true">
|
2016-08-21 13:29:42 +00:00
|
|
|
<intent-filter>
|
2016-09-22 21:47:54 +00:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2016-08-21 13:29:42 +00:00
|
|
|
|
2016-09-22 21:47:54 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2016-08-21 13:29:42 +00:00
|
|
|
</intent-filter>
|
2016-08-17 11:00:55 +00:00
|
|
|
</activity>
|
2016-09-15 17:52:58 +00:00
|
|
|
<activity
|
|
|
|
android:name="com.ipaulpro.afilechooser.FileChooserActivity"
|
2016-09-20 16:36:33 +00:00
|
|
|
android:enabled="true"
|
2016-09-15 17:52:58 +00:00
|
|
|
android:exported="true"
|
2016-09-20 05:05:41 +00:00
|
|
|
android:icon="@drawable/ic_chooser"
|
|
|
|
android:label="@string/choose_file">
|
2016-09-15 17:52:58 +00:00
|
|
|
<intent-filter>
|
2016-09-22 21:47:54 +00:00
|
|
|
<action android:name="android.intent.action.GET_CONTENT" />
|
2016-09-14 22:12:47 +00:00
|
|
|
|
2016-09-22 21:47:54 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.OPENABLE" />
|
2016-09-15 17:52:58 +00:00
|
|
|
|
2016-09-22 21:47:54 +00:00
|
|
|
<data android:mimeType="*/*" />
|
2016-09-15 17:52:58 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2016-09-20 05:05:41 +00:00
|
|
|
|
2016-09-15 17:52:58 +00:00
|
|
|
<provider
|
|
|
|
android:name="com.ianhanniballake.localstorage.LocalStorageProvider"
|
|
|
|
android:authorities="com.topjohnwu.magisk.documents"
|
|
|
|
android:enabled="@bool/use_provider"
|
|
|
|
android:exported="true"
|
|
|
|
android:grantUriPermissions="true"
|
2016-09-20 05:05:41 +00:00
|
|
|
android:permission="android.permission.MANAGE_DOCUMENTS">
|
2016-09-15 17:52:58 +00:00
|
|
|
<intent-filter>
|
2016-09-22 21:47:54 +00:00
|
|
|
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />
|
2016-09-15 17:52:58 +00:00
|
|
|
</intent-filter>
|
|
|
|
</provider>
|
2016-08-26 11:01:12 +00:00
|
|
|
<activity
|
|
|
|
android:name=".AboutActivity"
|
2016-09-22 21:47:54 +00:00
|
|
|
android:theme="@style/AppTheme.Transparent" />
|
2016-08-31 21:52:42 +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-09-20 16:36:33 +00:00
|
|
|
<receiver android:name=".receivers.AutoStartReceiver">
|
2016-09-15 21:59:34 +00:00
|
|
|
<intent-filter>
|
2016-09-22 21:47:54 +00:00
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
2016-09-15 21:59:34 +00:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2016-09-21 21:55:20 +00:00
|
|
|
|
2016-08-31 21:52:42 +00:00
|
|
|
|
2016-08-05 16:58:05 +00:00
|
|
|
</application>
|
|
|
|
|
2016-09-21 21:55:20 +00:00
|
|
|
|
2016-08-05 16:58:05 +00:00
|
|
|
</manifest>
|