mirror of
https://github.com/QM4RS/FridaBox.git
synced 2026-09-27 11:32:06 +02:00
56 lines
2.2 KiB
XML
56 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" />
|
|
|
|
<!-- Storage permissions for Android 10 and below -->
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
android:maxSdkVersion="29" />
|
|
|
|
|
|
<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.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> |