You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spoofs the information which is retrieved from the sim-card.
all
π¦ tv.twitch.android.app
π Patch
π Description
πΉ Target Version
block-audio-ads
Blocks audio ads in streams and VODs.
all
block-video-ads
Blocks video ads in streams and VODs.
all
debug-mode
Enables Twitch's internal debugging mode.
all
settings
Adds settings menu to Twitch.
all
show-deleted-messages
Shows deleted chat messages behind a clickable spoiler.
all
π¦ com.spotify.music
π Patch
π Description
πΉ Target Version
disable-capture-restriction
Allows capturing Spotify's audio output while screen sharing or screen recording.
all
hide-premium-navbar
Removes the premium tab from the navbar.
all
spotify-theme
Applies a custom theme.
all
π¦ com.twitter.android
π Patch
π Description
πΉ Target Version
dynamic-color
Replaces the default Twitter Blue with the users Material You palette.
all
monochrome-icon
Adds a monochrome icon.
all
timeline-ads
Removes ads from the Twitter timeline.
all
π¦ com.reddit.frontpage
π Patch
π Description
πΉ Target Version
general-reddit-ads
Removes general ads from the Reddit frontpage and subreddits.
all
premium-icon-reddit
Unlocks premium Reddit app icons.
all
π¦ com.vanced.android.youtube
π Patch
π Description
πΉ Target Version
client-spoof
Spoofs the YouTube or Vanced client to prevent playback issues.
all
π¦ com.myprog.hexedit
π Patch
π Description
πΉ Target Version
disable-ads
Disables ads in HexEditor.
all
π¦ com.crunchyroll.crunchyroid
π Patch
π Description
πΉ Target Version
enable-downloads
Enables downloads for Crunchyroll.
all
π¦ org.citra.citra_emu
π Patch
π Description
πΉ Target Version
premium-unlock
Unlocks premium functions.
all
π¦ com.backdrops.wallpapers
π Patch
π Description
πΉ Target Version
pro-unlock
Unlocks pro-only functions.
all
π¦ de.dwd.warnapp
π Patch
π Description
πΉ Target Version
promo-code-unlock
Disables the validation of promo code. Any code will work to unlock all features.
all
π¦ com.urbandroid.sleep
π Patch
π Description
πΉ Target Version
unlock-premium
Unlocks all premium features.
all
π¦ ginlemon.iconpackstudio
π Patch
π Description
πΉ Target Version
unlock-pro
Unlocks all pro features.
all
π¦ com.ithebk.expensemanager
π Patch
π Description
πΉ Target Version
unlock-pro
Unlocks pro features.
all
π¦ org.totschnig.myexpenses
π Patch
π Description
πΉ Target Version
unlock-pro
Unlocks all professional features.
all
π¦ co.windyapp.android
π Patch
π Description
πΉ Target Version
unlock-pro
Unlocks all pro features.
all
π¦ com.awedea.nyx
π Patch
π Description
πΉ Target Version
unlock-pro
Unlocks all pro features.
all
π¦ com.ticktick.task
π Patch
π Description
πΉ Target Version
unlock-themes
Unlocks all themes.
all
π JSON Format
This section explains the JSON format for the patches.json file.
The file contains an array of objects, each object representing a patch. The object contains the following properties:
key
description
name
The name of the patch.
description
The description of the patch.
version
The version of the patch.
excluded
Whether the patch is excluded by default. If true, the patch must never be included by default.
options
An array of options for this patch.
options.key
The key of the option.
options.title
The title of the option.
options.description
The description of the option.
options.required
Whether the option is required.
options.choices?
An array of choices of the option. This may be null if this option has no choices. The element type of this array may be any type. It can be a String, Int or something else.
dependencies
An array of dependencies, which are patch names.
compatiblePackages
An array of packages compatible with this patch.
compatiblePackages.name
The name of the package.
compatiblePackages.versions
An array of versions of the package compatible with this patch. If empty, all versions are seemingly compatible.
Example:
[
{
"name": "remember-video-quality",
"description": "Adds the ability to remember the video quality you chose in the video quality flyout.",
"version": "0.0.1",
"excluded": false,
"options": [],
"dependencies": [
"integrations",
"video-id-hook"
],
"compatiblePackages": [
{
"name": "com.google.android.youtube",
"versions": [
"17.22.36",
"17.24.35",
"17.26.35",
"17.27.39",
"17.28.34",
"17.29.34",
"17.32.35",
"17.33.42"
]
}
]
},
{
"name": "theme",
"description": "Enables a custom theme.",
"version": "0.0.1",
"excluded": false,
"deprecated": false,
"options": [
{
"key": "theme",
"title": "Theme",
"description": "Select a theme.",
"required": true,
"choices": [
"Amoled"
]
}
],
"dependencies": [
"locale-config-fix"
],
"compatiblePackages": [
{
"name": "com.google.android.youtube",
"versions": []
}
]
},
{
"name": "custom-branding",
"description": "Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).",
"version": "0.0.1",
"excluded": false,
"deprecated": false,
"options": [
{
"key": "appName",
"title": "Application Name",
"description": "The name of the application it will show on your home screen.",
"required": true,
"choices": null
},
{
"key": "appIconPath",
"title": "Application Icon Path",
"description": "A path to the icon of the application.",
"required": false,
"choices": null
}
],
"dependencies": [
"locale-config-fix"
],
"compatiblePackages": [
{
"name": "com.google.android.youtube",
"versions": []
}
]
}
]