diff --git a/src/config.py b/src/config.py index 2d88064..ec238b3 100644 --- a/src/config.py +++ b/src/config.py @@ -35,7 +35,7 @@ class RevancedConfig(object): self.keystore_name = env.str("KEYSTORE_FILE_NAME", "revanced.keystore") self.ci_test = env.bool("CI_TEST", False) self.apps = env.list("PATCH_APPS", default_build) - self.extended_apps: List[str] = ["youtube", "youtube_music", "microg"] + self.extended_apps: List[str] = ["youtube", "youtube_music", "microg", "reddit"] self.rip_libs_apps: List[str] = ["youtube"] self.normal_cli_jar = "revanced-cli.jar" self.normal_patches_jar = "revanced-patches.jar" diff --git a/src/patches.py b/src/patches.py index 852e275..0626d22 100644 --- a/src/patches.py +++ b/src/patches.py @@ -58,6 +58,7 @@ class Patches(object): "com.google.android.youtube": "youtube", "com.google.android.apps.youtube.music": "youtube_music", "com.mgoogle.android.gms": "microg", + "com.reddit.frontpage": "reddit", } revanced_extended_app_ids = { key: (value, "_" + value) for key, value in _revanced_extended_app_ids.items()