mirror of
https://github.com/LittleTurtle2333/SimplicityTools.git
synced 2026-07-13 03:41:19 +08:00
39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.lt2333.simplicitytools">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme"
|
|
android:supportsRtl="true" >
|
|
<activity
|
|
android:name=".activity.SettingsActivity"
|
|
android:exported="true"
|
|
android:launchMode="singleTop">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
<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/xposeddescription" />
|
|
<meta-data
|
|
android:name="xposedminversion"
|
|
android:value="93" />
|
|
<meta-data
|
|
android:name="xposedscope"
|
|
android:resource="@array/xposed_scope" />
|
|
</application>
|
|
|
|
</manifest> |