From 3f11e4beb19fe16a347f6f11fd82a3679b9921d6 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Sat, 26 Nov 2022 21:56:04 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20New=20app=20my-expenses?= 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 fa772ac..5ebb73c 100644 --- a/README.md +++ b/README.md @@ -136,6 +136,7 @@ By default, script build the version as recommended by Revanced team. 14. citra 15. crunchyroll 16. windy + 17. my-expenses 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 ed7ea21..66bb7cb 100644 --- a/src/config.py +++ b/src/config.py @@ -25,6 +25,7 @@ class RevancedConfig: "icon-pack-studio", "twitch", "windy", + "my-expenses", ] 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 1bef51a..5a9656e 100644 --- a/src/patches.py +++ b/src/patches.py @@ -27,6 +27,7 @@ class Patches(object): "org.citra.citra_emu": ("citra", "_citra"), "com.crunchyroll.crunchyroid": ("citra", "_crunchyroll"), "co.windyapp.android": ("windy", "_windy"), + "org.totschnig.myexpenses": ("my-expenses", "_expenses"), } revanced_extended_app_ids = { "com.google.android.youtube": ("youtube", "_yt"), @@ -136,6 +137,7 @@ class Patches(object): "citra": "_citra", "crunchyroll": "_crunchyroll", "windy": "_windy", + "my-expenses": "_expenses", } if not (app_name := app_names.get(app)): raise AppNotFound(app)