From cc5f564ef5d8ed25213ed5390be1f28f5bd7e682 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Sun, 24 Aug 2025 18:47:44 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20support=20for=20Crunchyroll?= =?UTF-8?q?=20in=20patches=20and=20sources?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + src/downloader/sources.py | 1 + src/patches.py | 1 + 3 files changed, 3 insertions(+) diff --git a/README.md b/README.md index d218568..a0118ae 100644 --- a/README.md +++ b/README.md @@ -228,6 +228,7 @@ You can use any of the following methods to build. - [proton-mail](https://www.apkmirror.com/apk/proton-technologies-ag/protonmail-encrypted-email/) - [prime-video](https://www.apkmirror.com/apk/amazon-mobile-llc/amazon-prime-video/) - [cricbuzz](https://www.apkmirror.com/apk/cricbuzz-com/cricbuzz-live-cricket-scores-news/) + - [crunchyroll](https://www.apkmirror.com/apk/crunchyroll-llc-2/crunchyroll/)
`**` - You can also patch any other app which is **not** supported officially.To do so, you need to provide few more inputs to the tool which are mentioned below. These config will override the sources config from the tool. diff --git a/src/downloader/sources.py b/src/downloader/sources.py index 8b390fa..201f1ce 100644 --- a/src/downloader/sources.py +++ b/src/downloader/sources.py @@ -91,4 +91,5 @@ apk_sources = { "proton-mail": f"{APK_MIRROR_BASE_APK_URL}/proton-technologies-ag/protonmail-encrypted-email/", "prime-video": f"{APK_MIRROR_BASE_APK_URL}/amazon-mobile-llc/amazon-prime-video/", "cricbuzz": f"{APK_MIRROR_BASE_APK_URL}/cricbuzz-com/cricbuzz-live-cricket-scores-news/", + "crunchyroll": f"{APK_MIRROR_BASE_APK_URL}/crunchyroll-llc-2/crunchyroll/", } diff --git a/src/patches.py b/src/patches.py index a8e3585..d905921 100644 --- a/src/patches.py +++ b/src/patches.py @@ -84,6 +84,7 @@ class Patches(object): "ch.protonmail.android": "proton-mail", "com.amazon.avod.thirdpartyclient": "prime-video", "com.cricbuzz.android": "cricbuzz", + "com.crunchyroll.crunchyroid": "crunchyroll", } @staticmethod