适配 QQ 8.8.83

This commit is contained in:
2022-03-18 14:19:59 +08:00
parent a3772e3673
commit 1c42bc4def
2 changed files with 5 additions and 1 deletions

View File

@@ -107,6 +107,10 @@ class HookEntry : YukiHookXposedInitProxy {
interceptBaseChatPie(methodName = "bk") interceptBaseChatPie(methodName = "bk")
interceptBaseChatPie(methodName = "bl") interceptBaseChatPie(methodName = "bl")
} }
"8.8.83" -> {
interceptBaseChatPie(methodName = "bl")
interceptBaseChatPie(methodName = "bm")
}
else -> loggerD(msg = "$version not supported!") else -> loggerD(msg = "$version not supported!")
} }
} }

View File

@@ -63,7 +63,7 @@ class MainActivity : AppCompatActivity() {
private const val moduleVersion = BuildConfig.VERSION_NAME private const val moduleVersion = BuildConfig.VERSION_NAME
private const val qqSupportVersion = private const val qqSupportVersion =
"8.2.11(Play)、8.8.17、8.8.23、8.8.35、8.8.38、8.8.50、8.8.55、8.8.68、8.8.80 (8.2.11、8.5.5~8.8.80)" "8.2.11(Play)、8.8.17、8.8.23、8.8.35、8.8.38、8.8.50、8.8.55、8.8.68、8.8.80、8.8.83 (8.2.11、8.5.5~8.8.83)"
private const val timSupportVersion = "2+、3+ (并未完全测试每个版本)" private const val timSupportVersion = "2+、3+ (并未完全测试每个版本)"
private const val wechatSupportVersion = "全版本仅支持基础省电,更多功能依然画饼" private const val wechatSupportVersion = "全版本仅支持基础省电,更多功能依然画饼"
} }