Compare commits

4 Commits
1 ... main

Author SHA1 Message Date
Chara White
4392f7a581 add info 2023-01-20 17:26:20 +08:00
Chara White
f22fa2be35 change rootProject.name 2023-01-20 06:02:12 +08:00
Chara White
a17a0fd013 add text
change api version
2023-01-20 02:27:11 +08:00
Chara White
57499255c3 change text 2023-01-20 02:25:08 +08:00
5 changed files with 6 additions and 6 deletions

View File

@@ -2,4 +2,4 @@
A Xposed module to disable Alt-Tab hotkey for generic android devices. A Xposed module to disable Alt-Tab hotkey for generic android devices.
For Xiaomi Pad 5 Series, use [MiuiPadMeta](https://github.com/CwithW/MiuiPadMeta) instead which also disables Xiaomi Meta hotkeys. For MIUI Android12+ devices, use [MiuiPadMeta](https://github.com/CwithW/MiuiPadMeta) instead which also disables MIUI Meta key hotkeys(eg. Win-A opens calculator).

View File

@@ -8,7 +8,7 @@ android {
defaultConfig { defaultConfig {
applicationId = "pub.chara.disablealttab" applicationId = "pub.chara.disablealttab"
minSdk = 30 minSdk = 24
targetSdk = 32 targetSdk = 32
versionCode = 1 versionCode = 1
versionName = "1" versionName = "1"

View File

@@ -20,9 +20,9 @@ object AltTabHook : BaseHook() {
} }
} }
} }
XposedBridge.log("MiuiPadMeta: AltTabHook success!") XposedBridge.log("DisableAltTab: AltTabHook success!")
} catch (e: Throwable) { } catch (e: Throwable) {
XposedBridge.log("MiuiPadMeta: AltTabHook failed!") XposedBridge.log("DisableAltTab: AltTabHook failed!")
XposedBridge.log(e) XposedBridge.log(e)
} }
} }

View File

@@ -1,4 +1,4 @@
<resources> <resources>
<string name="app_name">MiuiPadMeta</string> <string name="app_name">DisableAltTab</string>
<string name="xposed_desc">A Xposed module to disable Alt-Tab hotkey for generic android devices.</string> <string name="xposed_desc">A Xposed module to disable Alt-Tab hotkey for generic android devices.</string>
</resources> </resources>

View File

@@ -15,5 +15,5 @@ dependencyResolutionManagement {
} }
include(":app") include(":app")
rootProject.name = "MiuiPadESC" rootProject.name = "DisableAltTab"