feat(kakaotalk): Update compatible version for multiple patches to 25.4.0

This commit is contained in:
2025-05-14 13:48:37 +09:00
parent 5b55077ccc
commit cb23e62f48
7 changed files with 8 additions and 8 deletions

View File

@ -15,7 +15,7 @@ val changeModelPatch = bytecodePatch(
"model", "SM-X926N"
)
compatibleWith(Package("com.kakao.talk", setOf("25.3.5")))
compatibleWith("com.kakao.talk"("25.4.0"))
execute {
changeModelFingerprint.method.addInstructions(

View File

@ -14,7 +14,7 @@ val remove99ClampPatch = bytecodePatch(
name = "Disable 99 unread limit",
description = "Skip the 99-cap so unread count shows full value"
) {
compatibleWith(Package("com.kakao.talk", setOf("25.3.5")))
compatibleWith("com.kakao.talk"("25.4.0"))
execute {
val method = remove99ClampFingerprint.method

View File

@ -15,7 +15,7 @@ val remove300PlusLimitBaseChatRoomPatch = bytecodePatch(
name = "Disable 300+ unread limit (BaseChatRoom)",
description = "Always show the real unread count instead of '300+' in base chatroom list"
) {
compatibleWith(Package("com.kakao.talk", setOf("25.3.5")))
compatibleWith("com.kakao.talk"("25.4.0"))
execute {
val method = remove300PlusLimitBaseChatRoomFingerprint.method
@ -41,7 +41,7 @@ val remove300PlusLimitOpenChatRoomPatch = bytecodePatch(
name = "Disable 300+ unread limit (OpenChatRoom)",
description = "Always show the real unread count instead of '300+' in open chatroom list"
) {
compatibleWith(Package("com.kakao.talk", setOf("25.3.5")))
compatibleWith("com.kakao.talk"("25.4.0"))
execute {
val method = remove300PlusLimitOpenChatRoomFingerprint.method

View File

@ -10,7 +10,7 @@ val forceEnableEmoticonPlusPatch = bytecodePatch(
name = "Force enable emoticon plus feature",
description = "Force enable emoticon plus feature (Unpurchased emoticon can be sent once per day)",
) {
compatibleWith(Package("com.kakao.talk", setOf("25.3.5")))
compatibleWith("com.kakao.talk"("25.4.0"))
execute {
forceEnableEmoticonPlusFingerprint.method.addInstructions(

View File

@ -16,7 +16,7 @@ val removeShopTabPatch = bytecodePatch(
name = "Remove shop tab",
description = "Removes the shop tab from the bottom navigation bar.",
) {
compatibleWith(Package("com.kakao.talk", setOf("25.3.5")))
compatibleWith("com.kakao.talk"("25.4.0"))
execute {
val method = removeShopTabFingerprint.method

View File

@ -10,7 +10,7 @@ val verifyingSignaturePatch = bytecodePatch(
name = "Disable verifying signature",
description = "Disables the signature verification check that prevents the app from running.",
) {
compatibleWith(Package("com.kakao.talk", setOf("25.3.5")))
compatibleWith("com.kakao.talk"("25.4.0"))
execute {
verifyingSignatureFingerprint.method.addInstructions(

View File

@ -17,7 +17,7 @@ val versionInfoPatch = bytecodePatch(
name = "Version info patch",
description = "Patches the version info to include '(ReVanced)' in the version string.",
) {
compatibleWith(Package("com.kakao.talk", setOf("25.3.5")))
compatibleWith("com.kakao.talk"("25.4.0"))
execute {
val runPatch: (Fingerprint) -> Unit = {