fix(YouTube Music - Hide ads): Hide premium promotion popups setting hides the playlist dialog https://github.com/inotia00/ReVanced_Extended/issues/2798

This commit is contained in:
inotia00
2025-02-28 09:20:13 +09:00
parent ef63c8dba7
commit 4e77f04270
2 changed files with 62 additions and 10 deletions

View File

@ -8,6 +8,7 @@ import app.revanced.patches.music.navigation.components.navigationBarComponentsP
import app.revanced.patches.music.utils.compatibility.Constants.COMPATIBLE_PACKAGE
import app.revanced.patches.music.utils.extension.Constants.ADS_PATH
import app.revanced.patches.music.utils.extension.Constants.COMPONENTS_PATH
import app.revanced.patches.music.utils.mainactivity.mainActivityResolvePatch
import app.revanced.patches.music.utils.navigation.navigationBarHookPatch
import app.revanced.patches.music.utils.patch.PatchList.HIDE_ADS
import app.revanced.patches.music.utils.playservice.is_7_28_or_greater
@ -26,6 +27,8 @@ import app.revanced.patches.shared.ads.hookLithoFullscreenAds
import app.revanced.patches.shared.ads.hookNonLithoFullscreenAds
import app.revanced.patches.shared.litho.addLithoFilter
import app.revanced.patches.shared.litho.lithoFilterPatch
import app.revanced.patches.shared.mainactivity.onStartMethod
import app.revanced.patches.shared.mainactivity.onStopMethod
import app.revanced.util.fingerprint.matchOrThrow
import app.revanced.util.fingerprint.methodOrThrow
import app.revanced.util.getReference
@ -63,6 +66,7 @@ val adsPatch = bytecodePatch(
navigationBarHookPatch,
sharedResourceIdPatch,
versionCheckPatch,
mainActivityResolvePatch,
)
execute {
@ -94,8 +98,19 @@ val adsPatch = bytecodePatch(
)
}
// get premium dialog in player
if (is_7_28_or_greater) {
mapOf(
onStartMethod to "onAppForegrounded",
onStopMethod to "onAppBackgrounded"
).forEach { (method, name) ->
method.addInstruction(
0,
"invoke-static {}, $PREMIUM_PROMOTION_POP_UP_CLASS_DESCRIPTOR->$name()V"
)
}
getPremiumDialogFingerprint
.methodOrThrow(getPremiumDialogParentFingerprint)
.apply {