mirror of
https://github.com/LittleTurtle2333/SimplicityTools.git
synced 2026-07-12 11:21:18 +08:00
74 lines
2.7 KiB
XML
74 lines
2.7 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:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
<activity
|
|
android:name=".activity.MainActivity"
|
|
android:exported="true"
|
|
android:launchMode="singleTop">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
<category android:name="de.robv.android.xposed.category.MODULE_SETTINGS" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity-alias
|
|
android:label="WooBox"
|
|
android:name=".launcher"
|
|
android:enabled="true"
|
|
android:exported="true"
|
|
android:targetActivity=".activity.MainActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity-alias>
|
|
|
|
<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" />
|
|
|
|
<service
|
|
android:name=".tiles.LockMaxFpsTile"
|
|
android:exported="true"
|
|
android:icon="@drawable/ic_fps"
|
|
android:label="@string/lock_max"
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
|
<intent-filter>
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<service
|
|
android:name=".tiles.AllowScreenshots"
|
|
android:exported="true"
|
|
android:icon="@drawable/ic_baseline_fullscreen_24"
|
|
android:label="@string/allow_screenshots"
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
|
<intent-filter>
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
</application>
|
|
|
|
</manifest> |