mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-05-24 02:42:11 +02:00
10 lines
363 B
Kotlin
10 lines
363 B
Kotlin
package app.revanced.patches.shared.fingerprints
|
|
|
|
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
|
import org.jf.dexlib2.Opcode
|
|
|
|
object OnBackPressedFingerprint : MethodFingerprint(
|
|
opcodes = listOf(Opcode.RETURN_VOID),
|
|
customFingerprint = { it, _ -> it.definingClass.endsWith("WatchWhileActivity;") && it.name == "onBackPressed" }
|
|
)
|