mirror of
https://github.com/revanced/revanced-patches.git
synced 2025-04-30 14:44:33 +02:00
11 lines
321 B
Kotlin
11 lines
321 B
Kotlin
package app.revanced.patches.shared.fingerprints
|
|
|
|
|
|
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
|
|
|
object WatchWhileActivityFingerprint : MethodFingerprint(
|
|
customFingerprint = { methodDef ->
|
|
methodDef.definingClass.endsWith("WatchWhileActivity;") && methodDef.name == "<init>"
|
|
}
|
|
)
|