2016-08-05 16:58:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-05-31 08:31:33 +00:00
|
|
|
<manifest
|
|
|
|
package="com.topjohnwu.magisk"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
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" />
|
2017-02-17 00:51:51 +00:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2016-08-05 16:58:05 +00:00
|
|
|
|
|
|
|
<application
|
2017-02-06 18:01:32 +00:00
|
|
|
android:name=".MagiskManager"
|
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">
|
|
|
|
<activity
|
2016-09-24 16:54:12 +00:00
|
|
|
android:name=".MainActivity"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2016-09-30 10:07:08 +00:00
|
|
|
android:exported="true"/>
|
2016-09-29 20:18:41 +00:00
|
|
|
|
2016-09-24 16:54:12 +00:00
|
|
|
<activity
|
|
|
|
android:name=".SplashActivity"
|
2016-09-20 05:05:41 +00:00
|
|
|
android:configChanges="orientation|screenSize"
|
2016-09-30 10:07:08 +00:00
|
|
|
android:exported="true"
|
|
|
|
android:theme="@style/SplashTheme">
|
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" />
|
|
|
|
<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-30 10:07:08 +00:00
|
|
|
|
2016-08-26 11:01:12 +00:00
|
|
|
<activity
|
|
|
|
android:name=".AboutActivity"
|
2016-09-29 20:18:41 +00:00
|
|
|
android:theme="@style/AppTheme.Transparent"/>
|
|
|
|
<activity
|
|
|
|
android:name=".SettingsActivity"
|
2016-09-22 21:47:54 +00:00
|
|
|
android:theme="@style/AppTheme.Transparent" />
|
2017-01-24 06:19:28 +00:00
|
|
|
<activity
|
|
|
|
android:name=".superuser.RequestActivity"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:taskAffinity="internal.superuser"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay" />
|
|
|
|
<activity
|
|
|
|
android:name=".superuser.SuRequestActivity"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:taskAffinity="internal.superuser"
|
|
|
|
android:theme="@style/SuRequest" />
|
|
|
|
|
|
|
|
<receiver
|
|
|
|
android:name=".superuser.SuReceiver" />
|
2016-08-31 21:52:42 +00:00
|
|
|
|
2017-01-29 08:52:43 +00:00
|
|
|
<receiver android:name=".receivers.BootReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2017-05-31 08:31:33 +00:00
|
|
|
<receiver android:name=".receivers.PackageReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.PACKAGE_ADDED" />
|
|
|
|
<action android:name="android.intent.action.PACKAGE_REMOVED" />
|
|
|
|
<data android:scheme="package" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2017-02-17 00:51:51 +00:00
|
|
|
<service android:name=".services.BootupIntentService" />
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".services.UpdateCheckService"
|
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE"
|
|
|
|
android:exported="true" />
|
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-12-23 15:05:41 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.gms.version"
|
|
|
|
android:value="@integer/google_play_services_version" />
|
|
|
|
|
2016-08-05 16:58:05 +00:00
|
|
|
</application>
|
|
|
|
|
2016-10-07 18:51:20 +00:00
|
|
|
</manifest>
|