Merge pull request #89 from nikhilbadyal/new-app/my-expenses

 New app my-expenses
This commit is contained in:
Nikhil Badyal
2022-11-26 22:04:12 +05:30
committed by GitHub
3 changed files with 4 additions and 0 deletions
+1
View File
@@ -136,6 +136,7 @@ By default, script build the version as recommended by Revanced team.
14. citra 14. citra
15. crunchyroll 15. crunchyroll
16. windy 16. windy
17. my-expenses
2. Remember to download the **_Microg_**. Otherwise, you will not be able to open YouTube. 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. 3. By default, it will build only `youtube`. To build other apps supported by revanced team.
+1
View File
@@ -25,6 +25,7 @@ class RevancedConfig:
"icon-pack-studio", "icon-pack-studio",
"twitch", "twitch",
"windy", "windy",
"my-expenses",
] ]
self.apk_pure = ["pflotsh-ecmwf", "hex-editor"] self.apk_pure = ["pflotsh-ecmwf", "hex-editor"]
self.keystore_name = env.str("KEYSTORE_FILE_NAME", "revanced.keystore") self.keystore_name = env.str("KEYSTORE_FILE_NAME", "revanced.keystore")
+2
View File
@@ -27,6 +27,7 @@ class Patches(object):
"org.citra.citra_emu": ("citra", "_citra"), "org.citra.citra_emu": ("citra", "_citra"),
"com.crunchyroll.crunchyroid": ("citra", "_crunchyroll"), "com.crunchyroll.crunchyroid": ("citra", "_crunchyroll"),
"co.windyapp.android": ("windy", "_windy"), "co.windyapp.android": ("windy", "_windy"),
"org.totschnig.myexpenses": ("my-expenses", "_expenses"),
} }
revanced_extended_app_ids = { revanced_extended_app_ids = {
"com.google.android.youtube": ("youtube", "_yt"), "com.google.android.youtube": ("youtube", "_yt"),
@@ -136,6 +137,7 @@ class Patches(object):
"citra": "_citra", "citra": "_citra",
"crunchyroll": "_crunchyroll", "crunchyroll": "_crunchyroll",
"windy": "_windy", "windy": "_windy",
"my-expenses": "_expenses",
} }
if not (app_name := app_names.get(app)): if not (app_name := app_names.get(app)):
raise AppNotFound(app) raise AppNotFound(app)