feat: Dependencies annotation

This commit is contained in:
oSumAtrIX
2022-06-03 17:52:05 +02:00
parent 52f9147ee8
commit 85806bb355
6 changed files with 19 additions and 9 deletions

View File

@ -4,6 +4,7 @@ import app.revanced.patcher.annotation.Description
import app.revanced.patcher.annotation.Name
import app.revanced.patcher.annotation.Version
import app.revanced.patcher.data.implementation.ResourceData
import app.revanced.patcher.patch.annotations.Dependencies
import app.revanced.patcher.patch.annotations.Patch
import app.revanced.patcher.patch.implementation.ResourcePatch
import app.revanced.patcher.patch.implementation.misc.PatchResult
@ -13,7 +14,8 @@ import app.revanced.patches.youtube.misc.manifest.patch.FixLocaleConfigErrorPatc
import org.w3c.dom.Element
import java.io.File
@Patch(
@Patch
@Dependencies(
dependencies = [
FixLocaleConfigErrorPatch::class
]