You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
861ad9881c
Also updated material library and injected backported styles which were incompatible with the current UI for the most part and as it was over-carded all cards were removed and replaced with flat UI components. This change is temporary and *will* be redone to the final redesign, in other words this is sufficient for the transition period. All themers should refrain from trying to theme the app until the redesign is done. It will break your efforts with every other release.
78 lines
2.6 KiB
XML
78 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.topjohnwu.magisk">
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:name="a.e"
|
|
android:theme="@style/MagiskTheme"
|
|
android:usesCleartextTraffic="true"
|
|
tools:ignore="UnusedAttribute,GoogleAppIndexingWarning">
|
|
|
|
<!-- Activities -->
|
|
|
|
<activity
|
|
android:name="a.b"
|
|
android:configChanges="orientation|screenSize"
|
|
android:exported="true" />
|
|
<activity
|
|
android:name="a.c"
|
|
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.f"
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
android:screenOrientation="nosensor"
|
|
android:theme="@style/AppTheme.NoDrawer" />
|
|
|
|
<!-- Superuser -->
|
|
|
|
<activity
|
|
android:name="a.m"
|
|
android:exported="false"
|
|
android:directBootAware="true"
|
|
android:excludeFromRecents="true"
|
|
android:theme="@style/SuRequest" />
|
|
|
|
<!-- Receiver -->
|
|
|
|
<receiver
|
|
android:name="a.h"
|
|
android:directBootAware="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
<action android:name="android.intent.action.LOCALE_CHANGED" />
|
|
</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>
|
|
|
|
<!-- Service -->
|
|
|
|
<service android:name="a.j" />
|
|
|
|
<!-- Hardcode GMS version -->
|
|
<meta-data
|
|
android:name="com.google.android.gms.version"
|
|
android:value="12451000" />
|
|
|
|
</application>
|
|
|
|
</manifest>
|