Magisk/app/src/main/AndroidManifest.xml

98 lines
4.0 KiB
XML
Raw Normal View History

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" />
2017-02-17 08:51:51 +08:00
<uses-permission android:name="android.permission.VIBRATE" />
2017-07-14 02:27:02 +08:00
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
2016-08-06 00:58:05 +08:00
<application
2017-02-07 02:01:32 +08:00
android:name=".MagiskManager"
2016-08-06 00:58:05 +08:00
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
2016-08-21 17:21:37 +02:00
android:theme="@style/AppTheme"
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
<activity
android:name=".MainActivity"
android:configChanges="orientation|screenSize"
2017-07-18 00:59:22 +08:00
android:exported="true" />
<activity
android:name=".SplashActivity"
android:configChanges="orientation|screenSize"
android:exported="true"
android:theme="@style/SplashTheme">
2016-08-21 15:29:42 +02:00
<intent-filter>
2016-09-22 16:47:54 -05:00
<action android:name="android.intent.action.MAIN" />
2017-07-18 00:59:22 +08:00
2016-09-22 16:47:54 -05:00
<category android:name="android.intent.category.LAUNCHER" />
2016-08-21 15:29:42 +02:00
</intent-filter>
2016-08-17 13:00:55 +02:00
</activity>
2016-08-26 13:01:12 +02:00
<activity
android:name=".AboutActivity"
2017-07-18 00:59:22 +08:00
android:theme="@style/AppTheme.Transparent" />
<activity
android:name=".SettingsActivity"
2016-09-22 16:47:54 -05:00
android:theme="@style/AppTheme.Transparent" />
2017-07-18 00:59:22 +08:00
<activity
android:name=".FlashActivity"
android:screenOrientation="nosensor"
android:configChanges="keyboardHidden|orientation|screenSize"
android:theme="@style/AppTheme.Transparent" />
<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" />
2017-06-07 02:19:23 +08:00
<receiver android:name=".superuser.SuReceiver" />
2017-01-29 16:52:43 +08:00
<receiver android:name=".receivers.BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
2017-05-31 16:31:33 +08:00
<receiver android:name=".receivers.PackageReceiver">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_REPLACED" />
<action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
2017-07-18 00:59:22 +08:00
2017-05-31 16:31:33 +08:00
<data android:scheme="package" />
</intent-filter>
</receiver>
2017-06-07 02:19:23 +08:00
<receiver android:name=".receivers.ManagerUpdate" />
2017-07-01 17:55:43 +08:00
<service android:name=".services.OnBootIntentService" />
2017-02-17 08:51:51 +08:00
<service
android:name=".services.UpdateCheckService"
2017-07-18 00:59:22 +08:00
android:exported="true"
android:permission="android.permission.BIND_JOB_SERVICE" />
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"
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-12-23 23:05:41 +08:00
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
2016-08-06 00:58:05 +08:00
</application>
2017-07-18 00:59:22 +08:00
</manifest>