Skip to content

Commit

Permalink
refactor(YouTube): Add missing version tags to "any version" bytecode…
Browse files Browse the repository at this point in the history
… patches
  • Loading branch information
LisoUseInAIKyrios authored and oSumAtrIX committed Nov 6, 2024
1 parent e3f25a0 commit a37096b
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit a37096b

Please sign in to comment.