From 6c99ef3d84f095aa502e1a041bc28dbcf8667c9e Mon Sep 17 00:00:00 2001 From: inotia00 <108592928+inotia00@users.noreply.github.com> Date: Tue, 11 Jun 2024 04:15:45 +0900 Subject: [PATCH] feat(YouTube Music): add support version `7.04.51` --- .../patches/music/utils/compatibility/Constants.kt | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/main/kotlin/app/revanced/patches/music/utils/compatibility/Constants.kt b/src/main/kotlin/app/revanced/patches/music/utils/compatibility/Constants.kt index 660499084..3575ee57c 100644 --- a/src/main/kotlin/app/revanced/patches/music/utils/compatibility/Constants.kt +++ b/src/main/kotlin/app/revanced/patches/music/utils/compatibility/Constants.kt @@ -7,12 +7,11 @@ object Constants { Patch.CompatiblePackage( "com.google.android.apps.youtube.music", setOf( - "6.29.58", - "6.31.55", - "6.33.52", - "6.51.53", - "7.02.52", - "7.03.51", + "6.29.58", // Latest version that supports the 'Restore old player layout' setting. + "6.33.52", // Latest version with the legacy code of YouTube Music. + "6.42.55", // Latest version that supports Android 7.0 + "6.51.53", // Latest version of YouTube Music 6.xx.xx + "7.04.51", // Latest version supported by the RVX patch. ) ) )