Skip to content

Commit e8ea89f

Browse files
fix(SoundCloud): Constrain patches to last working app target
1 parent 6c10345 commit e8ea89f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

patches/src/main/kotlin/app/revanced/patches/soundcloud/ad/HideAdsPatch.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import app.revanced.patches.soundcloud.shared.featureConstructorFingerprint
1212
val hideAdsPatch = bytecodePatch(
1313
name = "Hide ads",
1414
) {
15-
compatibleWith("com.soundcloud.android")
15+
compatibleWith("com.soundcloud.android"("2025.05.27-release"))
1616

1717
execute {
1818
// Enable a preset feature to disable audio ads by modifying the JSON server response.

patches/src/main/kotlin/app/revanced/patches/soundcloud/analytics/DisableTelemetryPatch.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ val disableTelemetryPatch = bytecodePatch(
88
name = "Disable telemetry",
99
description = "Disables SoundCloud's telemetry system.",
1010
) {
11-
compatibleWith("com.soundcloud.android")
11+
compatibleWith("com.soundcloud.android"("2025.05.27-release"))
1212

1313
execute {
1414
// Empty the "backend" argument to abort the initializer.

patches/src/main/kotlin/app/revanced/patches/soundcloud/offlinesync/EnableOfflineSyncPatch.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import com.android.tools.smali.dexlib2.iface.reference.FieldReference
1717
val enableOfflineSync = bytecodePatch(
1818
name = "Enable offline sync",
1919
) {
20-
compatibleWith("com.soundcloud.android")
20+
compatibleWith("com.soundcloud.android"("2025.05.27-release"))
2121

2222
execute {
2323
// Enable the feature to allow offline track syncing by modifying the JSON server response.

0 commit comments

Comments
 (0)