mirror of
https://github.com/revanced/revanced-patches.git
synced 2025-12-07 01:51:27 +01:00
Compare commits
3 Commits
v2.191.0-d
...
v2.191.0-d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e74e65364a | ||
|
|
ef241671bd | ||
|
|
096fc12123 |
@@ -1,3 +1,10 @@
|
||||
# [2.191.0-dev.9](https://github.com/ReVanced/revanced-patches/compare/v2.191.0-dev.8...v2.191.0-dev.9) (2023-09-25)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **Strava:** Add `Disable subscription suggestions` patch ([#2997](https://github.com/ReVanced/revanced-patches/issues/2997)) ([af02175](https://github.com/ReVanced/revanced-patches/commit/af0217594d9c7526f550fc7e6f09f8a9232e72cf))
|
||||
|
||||
# [2.191.0-dev.8](https://github.com/ReVanced/revanced-patches/compare/v2.191.0-dev.7...v2.191.0-dev.8) (2023-09-24)
|
||||
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
org.gradle.parallel = true
|
||||
org.gradle.caching = true
|
||||
kotlin.code.style = official
|
||||
version = 2.191.0-dev.8
|
||||
version = 2.191.0-dev.9
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -10,7 +10,7 @@ import app.revanced.patches.strava.subscription.fingerprints.GetSubscribedFinger
|
||||
|
||||
@Patch(
|
||||
name = "Unlock subscription features",
|
||||
description = "Unlocks \"Matched Runs\" and \"Segment Efforts\".",
|
||||
description = "Unlocks \"Routes\", \"Matched Runs\" and \"Segment Efforts\".",
|
||||
compatiblePackages = [CompatiblePackage("com.strava", ["320.12"])]
|
||||
)
|
||||
@Suppress("unused")
|
||||
@@ -19,4 +19,4 @@ object UnlockSubscriptionPatch : BytecodePatch(setOf(GetSubscribedFingerprint))
|
||||
val isSubscribedIndex = result.scanResult.patternScanResult!!.startIndex
|
||||
result.mutableMethod.replaceInstruction(isSubscribedIndex, "const/4 v0, 0x1")
|
||||
} ?: throw GetSubscribedFingerprint.exception
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,6 +6,6 @@ import com.android.tools.smali.dexlib2.Opcode
|
||||
object GetSubscribedFingerprint : MethodFingerprint(
|
||||
opcodes = listOf(Opcode.IGET_BOOLEAN),
|
||||
customFingerprint = { methodDef, classDef ->
|
||||
classDef.type.endsWith("SubscriptionDetailResponse;") && methodDef.name == "getSubscribed"
|
||||
classDef.type.endsWith("/SubscriptionDetailResponse;") && methodDef.name == "getSubscribed"
|
||||
}
|
||||
)
|
||||
|
||||
@@ -0,0 +1,72 @@
|
||||
package app.revanced.patches.strava.upselling
|
||||
|
||||
import app.revanced.extensions.exception
|
||||
import app.revanced.patcher.data.BytecodeContext
|
||||
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
|
||||
import app.revanced.patcher.extensions.InstructionExtensions.removeInstruction
|
||||
import app.revanced.patcher.patch.BytecodePatch
|
||||
import app.revanced.patcher.patch.annotation.CompatiblePackage
|
||||
import app.revanced.patcher.patch.annotation.Patch
|
||||
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod.Companion.toMutable
|
||||
import app.revanced.patches.strava.upselling.fingerprints.GetModulesFingerprint
|
||||
import com.android.tools.smali.dexlib2.AccessFlags
|
||||
import com.android.tools.smali.dexlib2.builder.MutableMethodImplementation
|
||||
import com.android.tools.smali.dexlib2.immutable.ImmutableMethod
|
||||
|
||||
@Patch(
|
||||
name = "Disable subscription suggestions",
|
||||
compatiblePackages = [CompatiblePackage("com.strava", ["320.12"])]
|
||||
)
|
||||
@Suppress("unused")
|
||||
object DisableSubscriptionSuggestionsPatch : BytecodePatch(
|
||||
setOf(GetModulesFingerprint)
|
||||
) {
|
||||
private const val HELPER_METHOD_NAME = "getModulesIfNotUpselling"
|
||||
private const val PAGE_SUFFIX = "_upsell"
|
||||
private const val LABEL = "original"
|
||||
|
||||
override fun execute(context: BytecodeContext) = GetModulesFingerprint.result?.let { result ->
|
||||
val className = result.classDef.type
|
||||
val originalMethod = result.mutableMethod
|
||||
val returnType = originalMethod.returnType
|
||||
|
||||
result.mutableClass.methods.add(ImmutableMethod(
|
||||
className,
|
||||
HELPER_METHOD_NAME,
|
||||
emptyList(),
|
||||
returnType,
|
||||
AccessFlags.PRIVATE.value,
|
||||
null,
|
||||
null,
|
||||
MutableMethodImplementation(3)
|
||||
).toMutable().apply {
|
||||
addInstructions(
|
||||
"""
|
||||
iget-object v0, p0, $className->page:Ljava/lang/String;
|
||||
const-string v1, "$PAGE_SUFFIX"
|
||||
invoke-virtual {v0, v1}, Ljava/lang/String;->endsWith(Ljava/lang/String;)Z
|
||||
move-result v0
|
||||
if-eqz v0, :$LABEL
|
||||
invoke-static {}, Ljava/util/Collections;->emptyList()Ljava/util/List;
|
||||
move-result-object v0
|
||||
return-object v0
|
||||
:$LABEL
|
||||
iget-object v0, p0, $className->modules:Ljava/util/List;
|
||||
return-object v0
|
||||
"""
|
||||
)
|
||||
})
|
||||
|
||||
val getModulesIndex = result.scanResult.patternScanResult!!.startIndex
|
||||
with(originalMethod) {
|
||||
removeInstruction(getModulesIndex)
|
||||
addInstructions(
|
||||
getModulesIndex,
|
||||
"""
|
||||
invoke-direct {p0}, $className->$HELPER_METHOD_NAME()$returnType
|
||||
move-result-object v0
|
||||
"""
|
||||
)
|
||||
}
|
||||
} ?: throw GetModulesFingerprint.exception
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package app.revanced.patches.strava.upselling.fingerprints
|
||||
|
||||
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
|
||||
import com.android.tools.smali.dexlib2.Opcode
|
||||
|
||||
object GetModulesFingerprint : MethodFingerprint(
|
||||
opcodes = listOf(Opcode.IGET_OBJECT),
|
||||
customFingerprint = { methodDef, classDef ->
|
||||
classDef.type.endsWith("/GenericLayoutEntry;") && methodDef.name == "getModules"
|
||||
}
|
||||
)
|
||||
@@ -30,7 +30,7 @@ object SpoofSignatureResourcePatch : ResourcePatch() {
|
||||
"App signature spoofed\\n\\n"
|
||||
+ "Side effects include:\\n"
|
||||
+ "• No ambient mode\\n"
|
||||
+ "• Videos can't be downloaded\\n"
|
||||
+ "• Videos cannot be downloaded\\n"
|
||||
+ "• Seekbar thumbnails are hidden"
|
||||
),
|
||||
StringResource(
|
||||
|
||||
Reference in New Issue
Block a user