You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
34 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<application
|
|
android:allowBackup="false"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme"
|
|
tools:ignore="MissingApplicationIcon">
|
|
<activity
|
|
android:name="cn.coderstory.miui.water.SettingsActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="de.robv.android.xposed.category.MODULE_SETTINGS" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<meta-data
|
|
android:name="xposedmodule"
|
|
android:value="true" />
|
|
<meta-data
|
|
android:name="xposeddescription"
|
|
android:value="@string/module_description" />
|
|
<meta-data
|
|
android:name="xposedminversion"
|
|
android:value="93" />
|
|
<meta-data
|
|
android:name="xposedscope"
|
|
android:resource="@array/scope" />
|
|
</application>
|
|
|
|
</manifest> |