Magisk/app/src/main/AndroidManifest.xml

95 lines
3.4 KiB
XML
Raw Normal View History

2016-08-05 18:58:05 +02:00
<?xml version="1.0" encoding="utf-8"?>
2017-07-17 18:59:22 +02:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2022-05-10 05:53:47 +02:00
xmlns:tools="http://schemas.android.com/tools">
2016-09-22 23:47:54 +02:00
2022-06-19 15:25:19 +02:00
<permission
android:name="${applicationId}.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
android:protectionLevel="signature"
tools:node="remove" />
<uses-permission
android:name="${applicationId}.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
tools:node="remove" />
2016-08-05 18:58:05 +02:00
<application
2021-01-26 16:27:21 +01:00
android:name=".core.App"
android:extractNativeLibs="true"
2021-01-22 14:03:33 +01:00
android:icon="@drawable/ic_launcher"
2021-05-13 09:21:04 +02:00
android:multiArch="true"
2022-06-19 15:25:19 +02:00
tools:ignore="UnusedAttribute,GoogleAppIndexingWarning"
tools:remove="android:appComponentFactory">
<activity
2021-11-05 12:16:58 +01:00
android:name=".ui.MainActivity"
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>
2020-01-03 21:48:13 +01:00
<intent-filter>
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
2021-01-26 16:27:21 +01:00
android:name=".ui.surequest.SuRequestActivity"
android:directBootAware="true"
2022-06-06 14:26:53 +02:00
android:exported="false"
2022-06-09 13:39:43 +02:00
android:taskAffinity=""
2022-06-06 14:26:53 +02:00
tools:ignore="AppLinkUrlError">
2019-11-07 23:41:59 +01:00
<intent-filter>
2021-01-22 14:03:33 +01:00
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
2019-11-07 23:41:59 +01:00
</intent-filter>
</activity>
<receiver
2021-01-26 16:27:21 +01:00
android:name=".core.Receiver"
2021-01-22 14:03:33 +01:00
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.LOCALE_CHANGED" />
2021-03-18 06:40:07 +01:00
<action android:name="android.intent.action.UID_REMOVED" />
2022-02-14 03:35:35 +01:00
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
</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>
2021-11-05 07:39:35 +01:00
<service
android:name=".core.download.DownloadService"
android:exported="false" />
<service
android:name=".core.JobService"
android:exported="false"
android:permission="android.permission.BIND_JOB_SERVICE" />
2020-10-11 14:10:02 +02:00
<provider
2021-01-26 16:27:21 +01:00
android:name=".core.Provider"
2020-10-11 14:10:02 +02:00
android:authorities="${applicationId}.provider"
2020-10-11 14:19:05 +02:00
android:directBootAware="true"
2020-10-11 14:10:02 +02:00
android:exported="false"
2021-01-22 14:03:33 +01:00
android:grantUriPermissions="true" />
2020-10-11 14:10:02 +02:00
<!-- We don't invalidate Room -->
<service
android:name="androidx.room.MultiInstanceInvalidationService"
2021-01-22 14:03:33 +01:00
tools:node="remove" />
2022-01-22 06:17:31 +01:00
<!-- We don't need emoji compat -->
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
android:exported="false"
tools:node="remove" />
2016-08-05 18:58:05 +02:00
</application>
</manifest>