2018-05-27 08:34:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-09-15 05:00:39 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-05-27 08:34:05 +02:00
|
|
|
package="com.topjohnwu.magisk">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2018-06-13 20:31:31 +02:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2018-05-27 08:34:05 +02:00
|
|
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
2018-08-06 12:52:28 +02:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2018-05-27 08:34:05 +02:00
|
|
|
|
|
|
|
<application
|
2018-09-20 21:37:59 +02:00
|
|
|
android:name="a.q"
|
2018-09-15 05:00:39 +02:00
|
|
|
android:theme="@style/AppTheme"
|
2018-12-23 12:29:25 +01:00
|
|
|
android:usesCleartextTraffic="true"
|
2018-09-15 05:00:39 +02:00
|
|
|
tools:ignore="GoogleAppIndexingWarning">
|
|
|
|
|
|
|
|
<!-- Activities -->
|
2018-05-27 08:34:05 +02:00
|
|
|
|
|
|
|
<activity
|
2018-09-15 05:00:39 +02:00
|
|
|
android:name="a.b"
|
2018-05-27 08:34:05 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:exported="true" />
|
|
|
|
<activity
|
2018-09-15 05:00:39 +02:00
|
|
|
android:name="a.c"
|
2018-05-27 08:34:05 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:exported="true"
|
|
|
|
android:theme="@style/SplashTheme">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2018-09-15 05:00:39 +02:00
|
|
|
android:name="a.d"
|
2018-06-10 08:51:37 +02:00
|
|
|
android:theme="@style/AppTheme.StatusBar" />
|
2018-08-30 11:05:29 +02:00
|
|
|
<activity
|
2018-09-15 05:00:39 +02:00
|
|
|
android:name="a.e"
|
2018-08-30 11:05:29 +02:00
|
|
|
android:theme="@style/AppTheme.StatusBar"/>
|
2018-05-27 08:34:05 +02:00
|
|
|
<activity
|
2018-09-15 05:00:39 +02:00
|
|
|
android:name="a.f"
|
2018-05-27 08:34:05 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:screenOrientation="nosensor"
|
2018-06-10 08:51:37 +02:00
|
|
|
android:theme="@style/AppTheme.StatusBar" />
|
2018-09-15 05:00:39 +02:00
|
|
|
|
|
|
|
<!-- Superuser -->
|
|
|
|
|
2018-05-27 08:34:05 +02:00
|
|
|
<activity
|
2018-12-02 22:53:00 +01:00
|
|
|
android:name="a.m"
|
2018-05-27 08:34:05 +02:00
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:taskAffinity="internal.superuser"
|
|
|
|
android:theme="@style/SuRequest" />
|
|
|
|
|
2018-09-15 05:00:39 +02:00
|
|
|
<!-- Receiver -->
|
|
|
|
|
|
|
|
<receiver android:name="a.h">
|
2018-05-27 08:34:05 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.PACKAGE_REPLACED" />
|
|
|
|
<action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
|
|
|
|
<data android:scheme="package" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2018-12-02 22:53:00 +01:00
|
|
|
<receiver android:name="a.i">
|
2018-05-27 08:34:05 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.LOCALE_CHANGED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2018-09-15 05:00:39 +02:00
|
|
|
<!-- Service -->
|
|
|
|
|
2018-07-20 20:59:36 +02:00
|
|
|
<service
|
2018-12-02 22:53:00 +01:00
|
|
|
android:name="a.j"
|
2018-07-20 20:59:36 +02:00
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE" />
|
2018-05-27 08:34:05 +02:00
|
|
|
<service
|
2018-12-02 22:53:00 +01:00
|
|
|
android:name="a.k"
|
2018-05-27 08:34:05 +02:00
|
|
|
android:exported="true"
|
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE" />
|
|
|
|
|
|
|
|
<!-- Hardcode GMS version -->
|
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.gms.version"
|
2018-08-22 05:50:21 +02:00
|
|
|
android:value="12451000" />
|
2018-05-27 08:34:05 +02:00
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|