mirror of
https://github.com/revanced/revanced-patches
synced 2025-01-07 12:55:52 +01:00
refactor(tasker/unlock-trial): rename patch to unlock-trial
This commit is contained in:
parent
92d78576f0
commit
1afc5355e2
@ -1,4 +1,4 @@
|
|||||||
package app.revanced.patches.tasker.license.unlock.annotations
|
package app.revanced.patches.tasker.trial.unlock.annotations
|
||||||
|
|
||||||
import app.revanced.patcher.annotation.Compatibility
|
import app.revanced.patcher.annotation.Compatibility
|
||||||
import app.revanced.patcher.annotation.Package
|
import app.revanced.patcher.annotation.Package
|
||||||
@ -6,4 +6,4 @@ import app.revanced.patcher.annotation.Package
|
|||||||
@Compatibility([Package("net.dinglisch.android.taskerm")])
|
@Compatibility([Package("net.dinglisch.android.taskerm")])
|
||||||
@Target(AnnotationTarget.CLASS)
|
@Target(AnnotationTarget.CLASS)
|
||||||
@Retention(AnnotationRetention.RUNTIME)
|
@Retention(AnnotationRetention.RUNTIME)
|
||||||
internal annotation class UnlockLicenseCompatibility
|
internal annotation class UnlockTrialCompatibility
|
@ -1,4 +1,4 @@
|
|||||||
package app.revanced.patches.tasker.license.unlock.fingerprints
|
package app.revanced.patches.tasker.trial.unlock.fingerprints
|
||||||
|
|
||||||
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
package app.revanced.patches.tasker.license.unlock.patch
|
package app.revanced.patches.tasker.trial.unlock.patch
|
||||||
|
|
||||||
import app.revanced.extensions.toErrorResult
|
import app.revanced.extensions.toErrorResult
|
||||||
import app.revanced.patcher.annotation.Description
|
import app.revanced.patcher.annotation.Description
|
||||||
@ -9,13 +9,13 @@ import app.revanced.patcher.extensions.addInstruction
|
|||||||
import app.revanced.patcher.patch.BytecodePatch
|
import app.revanced.patcher.patch.BytecodePatch
|
||||||
import app.revanced.patcher.patch.PatchResultSuccess
|
import app.revanced.patcher.patch.PatchResultSuccess
|
||||||
import app.revanced.patcher.patch.annotations.Patch
|
import app.revanced.patcher.patch.annotations.Patch
|
||||||
import app.revanced.patches.tasker.license.unlock.annotations.UnlockLicenseCompatibility
|
import app.revanced.patches.tasker.trial.unlock.annotations.UnlockTrialCompatibility
|
||||||
import app.revanced.patches.tasker.license.unlock.fingerprints.CheckLicenseFingerprint
|
import app.revanced.patches.tasker.trial.unlock.fingerprints.CheckLicenseFingerprint
|
||||||
|
|
||||||
@Patch
|
@Patch
|
||||||
@Name("unlock-license")
|
@Name("unlock-trial")
|
||||||
@Description("Unlocks the trial version.")
|
@Description("Unlocks the trial version.")
|
||||||
@UnlockLicenseCompatibility
|
@UnlockTrialCompatibility
|
||||||
@Version("0.0.1")
|
@Version("0.0.1")
|
||||||
class UnlockLicensePatch : BytecodePatch(
|
class UnlockLicensePatch : BytecodePatch(
|
||||||
listOf(
|
listOf(
|
Loading…
Reference in New Issue
Block a user