54 lines
2.2 KiB
XML
54 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<!-- Android 11 需要 -->
|
|
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"
|
|
tools:ignore="QueryAllPackagesPermission" />
|
|
|
|
<!-- Internet permission for apps that need network access -->
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<application
|
|
android:name=".app.App"
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.BlackBox"
|
|
android:enableOnBackInvokedCallback="true"
|
|
tools:targetApi="n">
|
|
<activity
|
|
android:name=".view.fake.FollowMyLocationOverlay"
|
|
android:exported="false" />
|
|
<activity android:name=".view.setting.SettingActivity" />
|
|
<activity android:name=".view.gms.GmsManagerActivity" />
|
|
<activity
|
|
android:name=".view.main.WelcomeActivity"
|
|
android:exported="true"
|
|
android:launchMode="singleTop"
|
|
android:theme="@style/WelcomeTheme">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".view.list.ListActivity" />
|
|
<activity android:name=".view.fake.FakeManagerActivity" />
|
|
<activity android:name=".view.xp.XpActivity" />
|
|
<activity
|
|
android:name=".view.main.ShortcutActivity"
|
|
android:excludeFromRecents="true"
|
|
android:exported="true" />
|
|
<activity android:name=".view.main.MainActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest> |