Added AppErrorsDetailActivity function and more function

This commit is contained in:
2022-05-11 02:41:54 +08:00
parent cac96e188e
commit e2b6fe8a81
31 changed files with 1058 additions and 11 deletions

View File

@@ -1,7 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<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"
@@ -21,5 +27,10 @@
<meta-data
android:name="xposedscope"
android:resource="@array/module_scope" />
<activity
android:name=".ui.activity.AppErrorsDetailActivity"
android:exported="true"
android:screenOrientation="behind" />
</application>
</manifest>