Magisk/app/src/main/AndroidManifest.xml

115 lines
4.6 KiB
XML
Raw Normal View History

2016-08-05 18:58: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"
2016-08-21 17:21:37 +02:00
package="com.topjohnwu.magisk">
<uses-sdk tools:overrideLibrary="com.kcoppock.broadcatsttilesupport"/>
2016-08-21 17:21:37 +02:00
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
2016-08-25 11:04:56 +02:00
<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"/>
2016-09-15 23:59:34 +02:00
<uses-permission
android:name="android.permission.PACKAGE_USAGE_STATS"
tools:ignore="ProtectedPermissions"/>
2016-08-05 18:58:05 +02:00
<application
2016-08-05 18:58:05 +02: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">
<service
android:name=".services.MonitorService"
android:label="@string/accessibility_service_name"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService"/>
</intent-filter>
<meta-data
android:name="android.accessibilityservice"
android:resource="@xml/accessibilityservice"/>
</service>
<service
2016-09-22 06:36:28 +02:00
android:name=".services.TileServiceNewApi"
android:icon="@drawable/ic_autoroot"
android:label="@string/app_name"
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE"/>
</intent-filter>
</service>
<receiver
android:name=".receivers.PrivateBroadcastReceiver"
2016-09-21 00:01:20 +02:00
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.topjohnwu.magisk.CUSTOMTILE_ACTION_AUTOROOT"/>
<action android:name="com.topjohnwu.magisk.CUSTOMTILE_ACTION_DISABLEROOT"/>
<action android:name="com.topjohnwu.magisk.CUSTOMTILE_ACTION_ENABLEROOT"/>
</intent-filter>
</receiver>
2016-08-21 17:21:37 +02:00
<activity
android:name=".WelcomeActivity"
android:configChanges="orientation|screenSize"
android:exported="true">
2016-08-21 15:29:42 +02:00
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
2016-08-17 13:00:55 +02:00
</activity>
2016-09-15 19:52:58 +02:00
<activity
android:name="com.ipaulpro.afilechooser.FileChooserActivity"
android:enabled="true"
2016-09-15 19:52:58 +02:00
android:exported="true"
android:icon="@drawable/ic_chooser"
android:label="@string/choose_file">
2016-09-15 19:52:58 +02:00
<intent-filter>
<action android:name="android.intent.action.GET_CONTENT"/>
2016-09-15 00:12:47 +02:00
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.OPENABLE"/>
2016-09-15 19:52:58 +02:00
<data android:mimeType="*/*"/>
2016-09-15 19:52:58 +02:00
</intent-filter>
</activity>
2016-09-15 19:52:58 +02:00
<provider
android:name="com.ianhanniballake.localstorage.LocalStorageProvider"
android:authorities="com.topjohnwu.magisk.documents"
android:enabled="@bool/use_provider"
android:exported="true"
android:grantUriPermissions="true"
android:permission="android.permission.MANAGE_DOCUMENTS">
2016-09-15 19:52:58 +02:00
<intent-filter>
<action android:name="android.content.action.DOCUMENTS_PROVIDER"/>
2016-09-15 19:52:58 +02:00
</intent-filter>
</provider>
2016-08-26 13:01:12 +02:00
<activity
android:name=".AboutActivity"
android:theme="@style/AppTheme.Transparent"/>
2016-08-27 13:02:41 +02:00
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.topjohnwu.magisk.provider"
android:exported="false"
android:grantUriPermissions="true">
2016-08-27 13:02:41 +02:00
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths"/>
2016-08-27 13:02:41 +02:00
</provider>
<receiver android:name=".receivers.AutoStartReceiver">
2016-09-15 23:59:34 +02:00
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
2016-09-15 23:59:34 +02:00
</intent-filter>
</receiver>
2016-09-21 23:55:20 +02:00
2016-08-05 18:58:05 +02:00
</application>
2016-09-21 23:55:20 +02:00
2016-08-05 18:58:05 +02:00
</manifest>