mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-04-29 22:24:31 +02:00
fix: add missing dependency
This commit is contained in:
parent
4330b7f6df
commit
274e10aabc
@ -6,6 +6,7 @@ import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
|
|||||||
import app.revanced.patcher.patch.bytecodePatch
|
import app.revanced.patcher.patch.bytecodePatch
|
||||||
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
|
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
|
||||||
import app.revanced.patches.youtube.utils.extension.Constants.SHARED_PATH
|
import app.revanced.patches.youtube.utils.extension.Constants.SHARED_PATH
|
||||||
|
import app.revanced.patches.youtube.utils.extension.sharedExtensionPatch
|
||||||
import app.revanced.patches.youtube.utils.resourceid.sharedResourceIdPatch
|
import app.revanced.patches.youtube.utils.resourceid.sharedResourceIdPatch
|
||||||
import app.revanced.util.findMethodOrThrow
|
import app.revanced.util.findMethodOrThrow
|
||||||
import app.revanced.util.fingerprint.methodOrThrow
|
import app.revanced.util.fingerprint.methodOrThrow
|
||||||
@ -29,7 +30,10 @@ internal var engagementPanelIdRegister = 0
|
|||||||
val engagementPanelHookPatch = bytecodePatch(
|
val engagementPanelHookPatch = bytecodePatch(
|
||||||
description = "engagementPanelHookPatch"
|
description = "engagementPanelHookPatch"
|
||||||
) {
|
) {
|
||||||
dependsOn(sharedResourceIdPatch)
|
dependsOn(
|
||||||
|
sharedExtensionPatch,
|
||||||
|
sharedResourceIdPatch,
|
||||||
|
)
|
||||||
|
|
||||||
execute {
|
execute {
|
||||||
fun Method.setFreeIndex(startIndex: Int) {
|
fun Method.setFreeIndex(startIndex: Int) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user