mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-05-24 02:42:11 +02:00
16 lines
497 B
Kotlin
16 lines
497 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 LithoObjectFingerprint : MethodFingerprint(
|
|
returnType = "L",
|
|
access = AccessFlags.PUBLIC or AccessFlags.FINAL,
|
|
opcodes = listOf(
|
|
Opcode.CONST_STRING,
|
|
Opcode.INVOKE_VIRTUAL
|
|
),
|
|
strings = listOf("Element missing type extension")
|
|
) |