mirror of
https://github.com/KitsunePie/AppErrorsTracking.git
synced 2025-09-04 10:15:18 +08:00
96 lines
3.4 KiB
XML
96 lines
3.4 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.main.MainActivity"
|
|
android:exported="true"
|
|
android:screenOrientation="behind">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="de.robv.android.xposed.category.MODULE_SETTINGS" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity-alias
|
|
android:name=".Home"
|
|
android:exported="true"
|
|
android:label="@string/app_name"
|
|
android:screenOrientation="behind"
|
|
android:targetActivity=".ui.activity.main.MainActivity">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity-alias>
|
|
|
|
<activity
|
|
android:name=".ui.activity.errors.AppErrorsRecordActivity"
|
|
android:exported="true"
|
|
android:screenOrientation="behind" />
|
|
|
|
<activity
|
|
android:name=".ui.activity.errors.AppErrorsMutedActivity"
|
|
android:exported="false"
|
|
android:screenOrientation="behind" />
|
|
|
|
<activity
|
|
android:name=".ui.activity.errors.AppErrorsDisplayActivity"
|
|
android:excludeFromRecents="true"
|
|
android:exported="true"
|
|
android:label="@string/empty_lable"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="behind"
|
|
android:taskAffinity=":display"
|
|
android:theme="@style/Theme.AppErrorsTracking.Translucent" />
|
|
|
|
<activity
|
|
android:name=".ui.activity.errors.AppErrorsDetailActivity"
|
|
android:exported="true"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="behind"
|
|
android:taskAffinity=":detail" />
|
|
|
|
<service
|
|
android:name=".service.QuickStartTileService"
|
|
android:exported="true"
|
|
android:icon="@drawable/ic_debug"
|
|
android:label="@string/errors_record"
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
</intent-filter>
|
|
</service>
|
|
</application>
|
|
</manifest> |