From 014a6f15d15d43fcc455459b64b870811aaffe00 Mon Sep 17 00:00:00 2001 From: inotia00 <108592928+inotia00@users.noreply.github.com> Date: Wed, 3 Jan 2024 20:37:42 +0900 Subject: [PATCH] fix(YouTube Music/Hide general ads): add `Hide navigation bar component` patch as a dependency --- .../app/revanced/patches/music/ads/general/GeneralAdsPatch.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/kotlin/app/revanced/patches/music/ads/general/GeneralAdsPatch.kt b/src/main/kotlin/app/revanced/patches/music/ads/general/GeneralAdsPatch.kt index b6675aaa1..03e780493 100644 --- a/src/main/kotlin/app/revanced/patches/music/ads/general/GeneralAdsPatch.kt +++ b/src/main/kotlin/app/revanced/patches/music/ads/general/GeneralAdsPatch.kt @@ -11,6 +11,7 @@ import app.revanced.patches.music.ads.general.fingerprints.FloatingLayoutFingerp import app.revanced.patches.music.ads.general.fingerprints.InterstitialsContainerFingerprint import app.revanced.patches.music.ads.general.fingerprints.NotifierShelfFingerprint import app.revanced.patches.music.ads.music.MusicAdsPatch +import app.revanced.patches.music.navigation.component.NavigationBarComponentPatch import app.revanced.patches.music.utils.integrations.Constants.ADS_PATH import app.revanced.patches.music.utils.integrations.Constants.COMPONENTS_PATH import app.revanced.patches.music.utils.litho.LithoFilterPatch @@ -32,6 +33,7 @@ import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction dependencies = [ LithoFilterPatch::class, MusicAdsPatch::class, + NavigationBarComponentPatch::class, SettingsPatch::class, SharedResourceIdPatch::class ],