2016-08-06 00:58:05 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-07-18 00:59:22 +08:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-05-09 20:53:47 -07:00
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2016-09-22 16:47:54 -05:00
|
|
|
|
2024-07-10 21:50:54 -07:00
|
|
|
<application android:localeConfig="@xml/locale_config">
|
2019-03-08 10:16:02 -05:00
|
|
|
<activity
|
2021-11-05 04:16:58 -07:00
|
|
|
android:name=".ui.MainActivity"
|
2021-02-25 06:09:26 +08:00
|
|
|
android:exported="true"
|
2019-03-08 10:16:02 -05: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-04 04:48:13 +08:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
2019-03-08 10:16:02 -05:00
|
|
|
</activity>
|
2019-10-06 12:20:05 +02:00
|
|
|
|
2019-03-08 10:16:02 -05:00
|
|
|
<activity
|
2021-01-26 07:27:21 -08:00
|
|
|
android:name=".ui.surequest.SuRequestActivity"
|
2019-03-08 10:16:02 -05:00
|
|
|
android:directBootAware="true"
|
2022-06-06 05:26:53 -07:00
|
|
|
android:exported="false"
|
2022-06-09 19:39:43 +08:00
|
|
|
android:taskAffinity=""
|
2022-06-06 05:26:53 -07:00
|
|
|
tools:ignore="AppLinkUrlError">
|
2019-11-07 17:41:59 -05:00
|
|
|
<intent-filter>
|
2021-01-22 05:03:33 -08:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-11-07 17:41:59 -05:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2016-08-06 00:58:05 +08:00
|
|
|
</application>
|
|
|
|
|
2019-04-14 11:51:47 +02:00
|
|
|
</manifest>
|