Skip to content
This repository was archived by the owner on Mar 10, 2026. It is now read-only.

Commit 5925e0d

Browse files
committed
bump 5.14.1-dev.9
1 parent 7deb68e commit 5925e0d

3 files changed

Lines changed: 74 additions & 4 deletions

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ org.gradle.parallel = true
44
android.useAndroidX = true
55
kotlin.code.style = official
66
kotlin.jvm.target.validation.mode = IGNORE
7-
version = 5.14.1-dev.8
7+
version = 5.14.1-dev.9
88

patches.json

Lines changed: 49 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,16 @@
167167
},
168168
"options": []
169169
},
170+
{
171+
"name": "Change installer package name",
172+
"description": "Spoof the installer package name to make it appear that the app was installed from the Google Play Store.",
173+
"use": false,
174+
"dependencies": [
175+
"BytecodePatch"
176+
],
177+
"compatiblePackages": null,
178+
"options": []
179+
},
170180
{
171181
"name": "Change live ring click action",
172182
"description": "Adds an option to open the channel instead of the live stream when clicking on the live ring.",
@@ -193,7 +203,9 @@
193203
"name": "Change package name",
194204
"description": "Changes the package name for Reddit to the name specified in patch options.",
195205
"use": false,
196-
"dependencies": [],
206+
"dependencies": [
207+
"BytecodePatch"
208+
],
197209
"compatiblePackages": {
198210
"com.reddit.frontpage": [
199211
"2024.17.0",
@@ -500,7 +512,9 @@
500512
"name": "Custom branding name for Reddit",
501513
"description": "Changes the Reddit app name to the name specified in patch options.",
502514
"use": false,
503-
"dependencies": [],
515+
"dependencies": [
516+
"BytecodePatch"
517+
],
504518
"compatiblePackages": {
505519
"com.reddit.frontpage": [
506520
"2024.17.0",
@@ -2307,7 +2321,9 @@
23072321
"name": "Premium icon",
23082322
"description": "Unlocks premium app icons.",
23092323
"use": true,
2310-
"dependencies": [],
2324+
"dependencies": [
2325+
"BytecodePatch"
2326+
],
23112327
"compatiblePackages": {
23122328
"com.reddit.frontpage": [
23132329
"2024.17.0",
@@ -2643,6 +2659,7 @@
26432659
"description": "Applies mandatory patches to implement ReVanced Extended settings into the application.",
26442660
"use": true,
26452661
"dependencies": [
2662+
"BytecodePatch",
26462663
"BytecodePatch",
26472664
"BytecodePatch"
26482665
],
@@ -3011,6 +3028,35 @@
30113028
},
30123029
"options": []
30133030
},
3031+
{
3032+
"name": "Spoof signature",
3033+
"description": "Spoofs the signature of the app.",
3034+
"use": false,
3035+
"dependencies": [
3036+
"BytecodePatch"
3037+
],
3038+
"compatiblePackages": null,
3039+
"options": [
3040+
{
3041+
"key": "packageName",
3042+
"title": "Package name",
3043+
"description": "Package name.",
3044+
"required": false,
3045+
"type": "kotlin.String",
3046+
"default": "",
3047+
"values": null
3048+
},
3049+
{
3050+
"key": "certificateData",
3051+
"title": "Certificate data",
3052+
"description": "Base64-encoded string of the certificate.",
3053+
"required": false,
3054+
"type": "kotlin.String",
3055+
"default": "",
3056+
"values": null
3057+
}
3058+
]
3059+
},
30143060
{
30153061
"name": "Swipe controls",
30163062
"description": "Adds options for controlling volume and brightness with swiping, and whether to enter fullscreen when swiping down below the player.",

patches/api/patches.api

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,30 @@ public final class app/revanced/patches/all/misc/display/edgetoedge/EdgeToEdgeDi
1010
public static final fun getEdgeToEdgeDisplayPatch ()Lapp/revanced/patcher/patch/ResourcePatch;
1111
}
1212

13+
public final class app/revanced/patches/all/misc/installer/ChangeInstallerPackageNamePatchKt {
14+
public static final fun getChangeInstallerPackageNamePatch ()Lapp/revanced/patcher/patch/BytecodePatch;
15+
}
16+
1317
public final class app/revanced/patches/all/misc/network/OverrideCertificatePinningPatchKt {
1418
public static final fun getOverrideCertificatePinningPatch ()Lapp/revanced/patcher/patch/ResourcePatch;
1519
}
1620

21+
public final class app/revanced/patches/all/misc/signature/AppInfo {
22+
public fun <init> ()V
23+
public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
24+
public synthetic fun <init> (Ljava/lang/String;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
25+
public final fun getCertificateData ()Ljava/lang/String;
26+
public final fun getPackageName ()Ljava/lang/String;
27+
}
28+
29+
public final class app/revanced/patches/all/misc/signature/BaseSpoofSignaturePatchKt {
30+
public static final fun baseSpoofSignaturePatch (Lkotlin/jvm/functions/Function0;)Lapp/revanced/patcher/patch/BytecodePatch;
31+
}
32+
33+
public final class app/revanced/patches/all/misc/signature/SpoofSignaturePatchKt {
34+
public static final fun getSpoofSignaturePatch ()Lapp/revanced/patcher/patch/BytecodePatch;
35+
}
36+
1737
public abstract interface class app/revanced/patches/all/misc/transformation/IMethodCall {
1838
public abstract fun getDefinedClassName ()Ljava/lang/String;
1939
public abstract fun getMethodName ()Ljava/lang/String;
@@ -479,6 +499,10 @@ public final class app/revanced/patches/reddit/utils/extension/SharedExtensionPa
479499
public static final fun getSharedExtensionPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
480500
}
481501

502+
public final class app/revanced/patches/reddit/utils/fix/signature/SpoofSignaturePatchKt {
503+
public static final fun getSpoofSignaturePatch ()Lapp/revanced/patcher/patch/BytecodePatch;
504+
}
505+
482506
public final class app/revanced/patches/reddit/utils/resourceid/SharedResourceIdPatchKt {
483507
public static final fun getNsfwDialogTitle ()J
484508
}

0 commit comments

Comments
 (0)