2016-08-05 16:58:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-07-17 16:59:22 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-05-10 03:53:47 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2016-09-22 21:47:54 +00:00
|
|
|
|
2022-06-19 13:25:19 +00: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 16:58:05 +00:00
|
|
|
<application
|
2021-01-26 15:27:21 +00:00
|
|
|
android:name=".core.App"
|
2021-01-22 13:03:33 +00:00
|
|
|
android:icon="@drawable/ic_launcher"
|
2021-05-13 07:21:04 +00:00
|
|
|
android:multiArch="true"
|
2022-06-19 13:25:19 +00:00
|
|
|
tools:ignore="UnusedAttribute,GoogleAppIndexingWarning"
|
|
|
|
tools:remove="android:appComponentFactory">
|
2019-03-08 15:16:02 +00:00
|
|
|
|
|
|
|
<activity
|
2021-11-05 11:16:58 +00:00
|
|
|
android:name=".ui.MainActivity"
|
2021-02-24 22:09:26 +00:00
|
|
|
android:exported="true"
|
2019-03-08 15:16:02 +00:00
|
|
|
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 20:48:13 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
2019-03-08 15:16:02 +00:00
|
|
|
</activity>
|
2019-10-06 10:20:05 +00:00
|
|
|
|
2019-03-08 15:16:02 +00:00
|
|
|
<activity
|
2021-01-26 15:27:21 +00:00
|
|
|
android:name=".ui.surequest.SuRequestActivity"
|
2019-03-08 15:16:02 +00:00
|
|
|
android:directBootAware="true"
|
2022-06-06 12:26:53 +00:00
|
|
|
android:exported="false"
|
2022-06-09 11:39:43 +00:00
|
|
|
android:taskAffinity=""
|
2022-06-06 12:26:53 +00:00
|
|
|
tools:ignore="AppLinkUrlError">
|
2019-11-07 22:41:59 +00:00
|
|
|
<intent-filter>
|
2021-01-22 13:03:33 +00:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-11-07 22:41:59 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-03-08 15:16:02 +00:00
|
|
|
|
|
|
|
<receiver
|
2021-01-26 15:27:21 +00:00
|
|
|
android:name=".core.Receiver"
|
2021-01-22 13:03:33 +00:00
|
|
|
android:exported="false">
|
2019-03-08 15:16:02 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.LOCALE_CHANGED" />
|
2021-03-18 05:40:07 +00:00
|
|
|
<action android:name="android.intent.action.UID_REMOVED" />
|
2022-02-14 02:35:35 +00:00
|
|
|
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
2019-03-08 15:16:02 +00:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.PACKAGE_REPLACED" />
|
2021-09-02 09:15:25 +00:00
|
|
|
<action android:name="android.intent.action.PACKAGE_FULLY_REMOVED" />
|
2019-03-08 15:16:02 +00:00
|
|
|
|
|
|
|
<data android:scheme="package" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2021-11-05 06:39:35 +00:00
|
|
|
<service
|
2024-02-06 08:56:14 +00:00
|
|
|
android:name=".core.Service"
|
2023-04-02 09:20:49 +00:00
|
|
|
android:exported="false"
|
2024-02-07 01:29:42 +00:00
|
|
|
android:enabled="@bool/enable_fg_service"
|
2023-04-02 09:20:49 +00:00
|
|
|
android:foregroundServiceType="dataSync" />
|
2021-11-05 06:39:35 +00:00
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".core.JobService"
|
|
|
|
android:exported="false"
|
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE" />
|
2019-03-08 15:16:02 +00:00
|
|
|
|
2020-10-11 12:10:02 +00:00
|
|
|
<provider
|
2021-01-26 15:27:21 +00:00
|
|
|
android:name=".core.Provider"
|
2020-10-11 12:10:02 +00:00
|
|
|
android:authorities="${applicationId}.provider"
|
2020-10-11 12:19:05 +00:00
|
|
|
android:directBootAware="true"
|
2020-10-11 12:10:02 +00:00
|
|
|
android:exported="false"
|
2021-01-22 13:03:33 +00:00
|
|
|
android:grantUriPermissions="true" />
|
2020-10-11 12:10:02 +00:00
|
|
|
|
2019-11-03 22:01:09 +00:00
|
|
|
<!-- We don't invalidate Room -->
|
|
|
|
<service
|
|
|
|
android:name="androidx.room.MultiInstanceInvalidationService"
|
2021-01-22 13:03:33 +00:00
|
|
|
tools:node="remove" />
|
2019-11-03 22:01:09 +00:00
|
|
|
|
2023-10-26 22:56:42 +00:00
|
|
|
<!-- We handle initialization ourselves -->
|
2022-01-22 05:17:31 +00:00
|
|
|
<provider
|
|
|
|
android:name="androidx.startup.InitializationProvider"
|
|
|
|
android:authorities="${applicationId}.androidx-startup"
|
2023-10-26 22:56:42 +00:00
|
|
|
tools:node="remove" />
|
|
|
|
|
|
|
|
<!-- We handle profile installation ourselves -->
|
|
|
|
<receiver
|
|
|
|
android:name="androidx.profileinstaller.ProfileInstallReceiver"
|
2022-01-22 05:17:31 +00:00
|
|
|
tools:node="remove" />
|
|
|
|
|
2016-08-05 16:58:05 +00:00
|
|
|
</application>
|
|
|
|
|
2019-04-14 09:51:47 +00:00
|
|
|
</manifest>
|