From 660a1943a481fd82069b5cadf8a5a5162f1ea72c Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Mon, 28 Nov 2022 16:44:09 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20New=20app=20backdrops?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + src/config.py | 1 + src/patches.py | 2 ++ 3 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 64cd1b8..0fd37fe 100644 --- a/README.md +++ b/README.md @@ -137,6 +137,7 @@ By default, script build the version as recommended by Revanced team. 15. [crunchyroll](https://www.apkmirror.com/apk/ellation-inc/crunchyroll/) 16. [windy](https://windy.en.uptodown.com/android) 17. [my-expenses](https://my-expenses.en.uptodown.com/android) + 18. [backdrops](https://backdrops.en.uptodown.com/android) 2. Remember to download the **_Microg_**. Otherwise, you will not be able to open YouTube. 3. By default, it will build only `youtube`. To build other apps supported by revanced team. diff --git a/src/config.py b/src/config.py index 66bb7cb..26a9a39 100644 --- a/src/config.py +++ b/src/config.py @@ -26,6 +26,7 @@ class RevancedConfig: "twitch", "windy", "my-expenses", + "backdrops", ] self.apk_pure = ["pflotsh-ecmwf", "hex-editor"] self.keystore_name = env.str("KEYSTORE_FILE_NAME", "revanced.keystore") diff --git a/src/patches.py b/src/patches.py index 5a9656e..fc354c6 100644 --- a/src/patches.py +++ b/src/patches.py @@ -28,6 +28,7 @@ class Patches(object): "com.crunchyroll.crunchyroid": ("citra", "_crunchyroll"), "co.windyapp.android": ("windy", "_windy"), "org.totschnig.myexpenses": ("my-expenses", "_expenses"), + "com.backdrops.wallpapers": ("backdrops", "_backdrops"), } revanced_extended_app_ids = { "com.google.android.youtube": ("youtube", "_yt"), @@ -138,6 +139,7 @@ class Patches(object): "crunchyroll": "_crunchyroll", "windy": "_windy", "my-expenses": "_expenses", + "backdrops": "_backdrops", } if not (app_name := app_names.get(app)): raise AppNotFound(app)