Skip to content

Commit e798341

Browse files
committed
feat(Strava - Unlock subscription): Remove compatible version constraint
1 parent 182748c commit e798341

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/main/kotlin/app/revanced/patches/strava/subscription/UnlockSubscriptionPatch.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
package app.revanced.patches.strava.subscription
2-
3-
import app.revanced.util.exception
42
import app.revanced.patcher.data.BytecodeContext
53
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
64
import app.revanced.patcher.patch.BytecodePatch
75
import app.revanced.patcher.patch.annotation.CompatiblePackage
86
import app.revanced.patcher.patch.annotation.Patch
97
import app.revanced.patches.strava.subscription.fingerprints.GetSubscribedFingerprint
8+
import app.revanced.util.exception
109

1110
@Patch(
1211
name = "Unlock subscription features",
1312
description = "Unlocks \"Routes\", \"Matched Runs\" and \"Segment Efforts\".",
14-
compatiblePackages = [CompatiblePackage("com.strava", ["320.12"])]
13+
compatiblePackages = [CompatiblePackage("com.strava")],
1514
)
1615
@Suppress("unused")
1716
object UnlockSubscriptionPatch : BytecodePatch(setOf(GetSubscribedFingerprint)) {

0 commit comments

Comments
 (0)