revanced-patches/src/main/kotlin/app/revanced/patches/music/misc/debugging/DebuggingPatch.kt
2024-02-09 01:17:02 +01:00

14 lines
567 B
Kotlin

package app.revanced.patches.music.misc.debugging
import app.revanced.patches.music.misc.integrations.IntegrationsPatch
import app.revanced.patches.music.misc.settings.SettingsPatch
import app.revanced.patches.shared.misc.debugging.BaseDebuggingPatch
@Suppress("unused")
object DebuggingPatch : BaseDebuggingPatch(
integrationsPatch = IntegrationsPatch::class,
settingsPatch = SettingsPatch::class,
compatiblePackages = setOf(CompatiblePackage("com.google.android.apps.youtube.music")),
miscPreferenceScreen = SettingsPatch.PreferenceScreen.MISC,
)