mirror of
https://github.com/revanced/revanced-patches
synced 2024-11-10 12:49:28 +01:00
fix: add missing opcode for create-button-method
Added in latest(?) version of the app.
This commit is contained in:
parent
ae4c7b29f2
commit
0a398ef364
@ -32,7 +32,7 @@ class CreateButtonRemoverPatch : Patch(
|
|||||||
PatternScanMethod.Fuzzy(2), // FIXME: Test this threshold and find the best value.
|
PatternScanMethod.Fuzzy(2), // FIXME: Test this threshold and find the best value.
|
||||||
compatiblePackages,
|
compatiblePackages,
|
||||||
"Signature for the method required to be patched.",
|
"Signature for the method required to be patched.",
|
||||||
"0.0.1"
|
"0.0.2"
|
||||||
),
|
),
|
||||||
"V",
|
"V",
|
||||||
AccessFlags.PUBLIC or AccessFlags.FINAL,
|
AccessFlags.PUBLIC or AccessFlags.FINAL,
|
||||||
@ -69,6 +69,7 @@ class CreateButtonRemoverPatch : Patch(
|
|||||||
Opcode.CONST_4,
|
Opcode.CONST_4,
|
||||||
Opcode.INVOKE_VIRTUAL,
|
Opcode.INVOKE_VIRTUAL,
|
||||||
Opcode.MOVE_RESULT_OBJECT,
|
Opcode.MOVE_RESULT_OBJECT,
|
||||||
|
Opcode.INVOKE_STATIC,
|
||||||
Opcode.MOVE_OBJECT
|
Opcode.MOVE_OBJECT
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user