mirror of
https://github.com/revanced/revanced-patches.git
synced 2025-04-30 22:54:40 +02:00
29 lines
964 B
Kotlin
29 lines
964 B
Kotlin
package app.revanced.patches.candylinkvpn
|
|
|
|
import app.revanced.patcher.data.BytecodeContext
|
|
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
|
|
import app.revanced.patcher.patch.BytecodePatch
|
|
import app.revanced.patcher.patch.annotation.CompatiblePackage
|
|
import app.revanced.patcher.patch.annotation.Patch
|
|
import app.revanced.patches.candylinkvpn.fingerprints.IsPremiumPurchasedFingerprint
|
|
import app.revanced.util.exception
|
|
|
|
@Patch(
|
|
name = "Unlock pro",
|
|
compatiblePackages = [CompatiblePackage("com.candylink.openvpn")],
|
|
)
|
|
@Suppress("unused")
|
|
object UnlockProPatch : BytecodePatch(
|
|
setOf(IsPremiumPurchasedFingerprint),
|
|
) {
|
|
override fun execute(context: BytecodeContext) {
|
|
IsPremiumPurchasedFingerprint.result?.mutableMethod?.addInstructions(
|
|
0,
|
|
"""
|
|
const/4 v0, 0x1
|
|
return v0
|
|
""",
|
|
) ?: throw IsPremiumPurchasedFingerprint.exception
|
|
}
|
|
}
|