Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4392f7a581 | ||
|
|
f22fa2be35 | ||
|
|
a17a0fd013 | ||
|
|
57499255c3 |
@@ -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).
|
||||||
@@ -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"
|
||||||
|
|||||||
@@ -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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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>
|
||||||
@@ -15,5 +15,5 @@ dependencyResolutionManagement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
include(":app")
|
include(":app")
|
||||||
rootProject.name = "MiuiPadESC"
|
rootProject.name = "DisableAltTab"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user