mirror of
https://github.com/revanced/revanced-patches.git
synced 2025-05-02 15:44:39 +02:00
12 lines
362 B
Kotlin
12 lines
362 B
Kotlin
package app.revanced.patches.candylinkvpn.fingereprints
|
|
|
|
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
|
|
|
object IsPremiumPurchasedFingerprint : MethodFingerprint(
|
|
customFingerprint = { methodDef, _ ->
|
|
methodDef.definingClass.endsWith("PreferenceProvider;") &&
|
|
methodDef.name == "isPremiumPurchased"
|
|
}
|
|
) {
|
|
}
|