Magisk/app/src/full/AndroidManifest.xml

105 lines
3.6 KiB
XML
Raw Normal View History

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"
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" />
<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"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<!-- Activities -->
2018-05-27 08:34:05 +02:00
<activity
android:name="a.b"
2018-05-27 08:34:05 +02:00
android:configChanges="orientation|screenSize"
android:exported="true" />
<activity
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
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
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
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" />
<activity
android:name="a.g"
2018-06-10 08:51:37 +02:00
android:theme="@style/AppTheme.Translucent" />
<!-- Superuser -->
2018-05-27 08:34:05 +02:00
<activity
android:name="a.p"
2018-05-27 08:34:05 +02:00
android:excludeFromRecents="true"
android:launchMode="singleTask"
android:taskAffinity="internal.superuser"
android:theme="@style/SuRequest" />
<activity
android:name=".superuser.RequestActivity"
android:excludeFromRecents="true"
android:launchMode="singleTask"
android:taskAffinity="internal.superuser"
android:theme="@style/AppTheme.Translucent" />
2018-05-27 08:34:05 +02:00
<receiver android:name=".superuser.SuReceiver" />
<!-- 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>
</receiver>
<receiver android:name="a.i">
2018-05-27 08:34:05 +02:00
<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>
<receiver android:name="a.j" />
<receiver android:name="a.k" />
<receiver android:name="a.l">
2018-05-27 08:34:05 +02:00
<intent-filter>
<action android:name="android.intent.action.LOCALE_CHANGED" />
</intent-filter>
</receiver>
<!-- Service -->
<service
android:name="a.m"
android:exported="true"
android:permission="android.permission.BIND_JOB_SERVICE" />
2018-05-27 08:34:05 +02:00
<service
android:name="a.n"
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>