mirror of
https://github.com/ReVanced/revanced-patches.git
synced 2026-01-26 12:11:02 +00:00
fix: comments
This commit is contained in:
@@ -12,15 +12,15 @@ import org.jf.dexlib2.Opcode
|
|||||||
|
|
||||||
@Name("cast-button-signature")
|
@Name("cast-button-signature")
|
||||||
@MatchingMethod(
|
@MatchingMethod(
|
||||||
"Landroidx/mediarouter/app/MediaRouteButton", "setVisibility" // first one is prolly causing the issue
|
"Landroidx/mediarouter/app/MediaRouteButton", "setVisibility" // first one is prolly causing the issue since not sure what to write there
|
||||||
)
|
)
|
||||||
@FuzzyPatternScanMethod(2) // FIXME: Test this threshold and find the best value.
|
@FuzzyPatternScanMethod(2) // FIXME: Test this threshold and find the best value.
|
||||||
@CastButtonCompatibility
|
@CastButtonCompatibility
|
||||||
@Version("0.0.1")
|
@Version("0.0.1")
|
||||||
object CastButtonSignature : MethodSignature(
|
object CastButtonSignature : MethodSignature(
|
||||||
"V",
|
"V", // this might be broken as well since idk what is this
|
||||||
AccessFlags.PUBLIC or AccessFlags.FINAL,
|
AccessFlags.PUBLIC or AccessFlags.FINAL,
|
||||||
listOf("L","L"),
|
listOf("L","L"), // this too
|
||||||
listOf(
|
listOf(
|
||||||
Opcode.IPUT,
|
Opcode.IPUT,
|
||||||
Opcode.INVOKE_VIRTUAL,
|
Opcode.INVOKE_VIRTUAL,
|
||||||
|
|||||||
Reference in New Issue
Block a user