refactor(YouTube): Add missing version tags to "any version" bytecode patches

This commit is contained in:
LisoUseInAIKyrios 2024-11-03 19:45:20 -04:00 committed by oSumAtrIX
parent e3f25a03cd
commit a37096bf4d
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
3 changed files with 30 additions and 3 deletions

View File

@ -49,7 +49,16 @@ val customPlayerOverlayOpacityPatch = bytecodePatch(
) {
dependsOn(customPlayerOverlayOpacityResourcePatch)
compatibleWith("com.google.android.youtube")
compatibleWith(
"com.google.android.youtube"(
"18.38.44",
"18.49.37",
"19.16.39",
"19.25.37",
"19.34.42",
"19.43.41",
)
)
val createPlayerOverviewMatch by createPlayerOverviewFingerprint()

View File

@ -22,7 +22,16 @@ val announcementsPatch = bytecodePatch(
addResourcesPatch,
)
compatibleWith("com.google.android.youtube")
compatibleWith(
"com.google.android.youtube"(
"18.38.44",
"18.49.37",
"19.16.39",
"19.25.37",
"19.34.42",
"19.43.41",
)
)
val mainActivityOnCreateMatch by mainActivityOnCreateFingerprint()

View File

@ -20,7 +20,16 @@ val zoomHapticsPatch = bytecodePatch(
addResourcesPatch,
)
compatibleWith("com.google.android.youtube")
compatibleWith(
"com.google.android.youtube"(
"18.38.44",
"18.49.37",
"19.16.39",
"19.25.37",
"19.34.42",
"19.43.41",
)
)
val zoomHapticsMatch by zoomHapticsFingerprint()