mirror of
https://github.com/KitsunePie/AppErrorsTracking.git
synced 2026-02-04 20:27:16 +08:00
36 lines
1.2 KiB
XML
36 lines
1.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">
|
|
|
|
<uses-permission
|
|
android:name="android.permission.QUERY_ALL_PACKAGES"
|
|
tools:ignore="QueryAllPackagesPermission" />
|
|
|
|
<application
|
|
android:name=".application.AppErrorsApplication"
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.AppErrorsTracking">
|
|
|
|
<meta-data
|
|
android:name="xposedmodule"
|
|
android:value="true" />
|
|
<meta-data
|
|
android:name="xposeddescription"
|
|
android:value="@string/xposed_desc" />
|
|
<meta-data
|
|
android:name="xposedminversion"
|
|
android:value="93" />
|
|
<meta-data
|
|
android:name="xposedscope"
|
|
android:resource="@array/module_scope" />
|
|
|
|
<activity
|
|
android:name=".ui.activity.AppErrorsDetailActivity"
|
|
android:exported="true"
|
|
android:screenOrientation="behind" />
|
|
</application>
|
|
</manifest> |