fix(amoled): add missing dependencies

This commit is contained in:
inotia00 2023-04-16 02:20:09 +09:00
parent c7a003af92
commit ab720b4381
2 changed files with 8 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -10,13 +10,19 @@ import app.revanced.patcher.patch.ResourcePatch
import app.revanced.patcher.patch.annotations.DependsOn
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patches.music.layout.amoled.bytecode.patch.AmoledBytecodePatch
import app.revanced.patches.music.misc.integrations.patch.MusicIntegrationsPatch
import app.revanced.patches.shared.annotation.YouTubeMusicCompatibility
import org.w3c.dom.Element
@Patch
@Name("amoled")
@Description("Applies pure black theme in flyout panels.")
@DependsOn([AmoledBytecodePatch::class])
@DependsOn(
[
AmoledBytecodePatch::class,
MusicIntegrationsPatch::class
]
)
@YouTubeMusicCompatibility
@Version("0.0.1")
class AmoledPatch : ResourcePatch {