2021-02-03 16:36:24 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-08-16 00:27:51 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2021-02-03 16:36:24 +08:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
tools:ignore="AllowBackup,MissingApplicationIcon">
|
|
|
|
<meta-data
|
|
|
|
android:name="xposedmodule"
|
|
|
|
android:value="true" />
|
|
|
|
<meta-data
|
|
|
|
android:name="xposeddescription"
|
|
|
|
android:value="@string/xposed_description" />
|
|
|
|
<meta-data
|
|
|
|
android:name="xposedminversion"
|
|
|
|
android:value="53" />
|
|
|
|
<meta-data
|
|
|
|
android:name="xposedscope"
|
|
|
|
android:resource="@array/scope" />
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|