88 lines
3.3 KiB
XML
88 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest package="com.topjohnwu.magisk"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<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" />
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
<application
|
|
android:name=".MagiskManager"
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme"
|
|
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:configChanges="orientation|screenSize"
|
|
android:exported="true"/>
|
|
|
|
<activity
|
|
android:name=".SplashActivity"
|
|
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=".AboutActivity"
|
|
android:theme="@style/AppTheme.Transparent"/>
|
|
<activity
|
|
android:name=".SettingsActivity"
|
|
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" />
|
|
|
|
<receiver
|
|
android:name=".superuser.SuReceiver" />
|
|
|
|
<receiver android:name=".receivers.BootReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<service android:name=".services.BootupIntentService" />
|
|
|
|
<service
|
|
android:name=".services.UpdateCheckService"
|
|
android:permission="android.permission.BIND_JOB_SERVICE"
|
|
android:exported="true" />
|
|
|
|
<provider
|
|
android:name="android.support.v4.content.FileProvider"
|
|
android:authorities="com.topjohnwu.magisk.provider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/file_paths" />
|
|
</provider>
|
|
|
|
<meta-data
|
|
android:name="com.google.android.gms.version"
|
|
android:value="@integer/google_play_services_version" />
|
|
|
|
</application>
|
|
|
|
</manifest>
|