feat(candylinkvpn): add unlock-pro patch (#2157)

Co-authored-by: oSumAtrIX <johan.melkonyan1@web.de>
This commit is contained in:
johnconner122
2023-05-16 08:39:48 +05:00
committed by GitHub
parent 5d1de4f4ea
commit 7159f86780
3 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,11 @@
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"
}
) {
}