mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-05-24 02:42:11 +02:00
23 lines
660 B
Kotlin
23 lines
660 B
Kotlin
package app.revanced.patches.shared.fingerprints
|
|
|
|
import app.revanced.patcher.extensions.or
|
|
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
|
import org.jf.dexlib2.AccessFlags
|
|
import org.jf.dexlib2.Opcode
|
|
|
|
object SubtitleButtonControllerFingerprint : MethodFingerprint(
|
|
returnType = "V",
|
|
access = AccessFlags.PUBLIC or AccessFlags.FINAL,
|
|
parameters = listOf("L"),
|
|
opcodes = listOf(
|
|
Opcode.IGET_OBJECT,
|
|
Opcode.IF_NEZ,
|
|
Opcode.RETURN_VOID,
|
|
Opcode.IGET_BOOLEAN,
|
|
Opcode.CONST_4,
|
|
Opcode.IF_NEZ,
|
|
Opcode.CONST,
|
|
Opcode.INVOKE_VIRTUAL,
|
|
Opcode.IGET_OBJECT
|
|
)
|
|
) |