Magisk/app/apk/src/main/AndroidManifest.xml

34 lines
1.3 KiB
XML
Raw Normal View History

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">
<activity
2021-11-05 04:16:58 -07: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-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>
</activity>
<activity
2021-01-26 07:27:21 -08:00
android:name=".ui.surequest.SuRequestActivity"
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>
</manifest>