Merge pull request #191 from nikhilbadyal/new-app/grecorder

🎨 Added Google Recorder
This commit is contained in:
Nikhil Badyal
2023-07-01 18:12:11 +05:30
committed by GitHub
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -150,6 +150,7 @@ By default, script build the version as recommended by Revanced team.
23. [instagram](https://www.apkmirror.com/apk/instagram/instagram-instagram/) 23. [instagram](https://www.apkmirror.com/apk/instagram/instagram-instagram/)
24. [inshorts](https://www.apkmirror.com/apk/inshorts-formerly-news-in-shorts/) 24. [inshorts](https://www.apkmirror.com/apk/inshorts-formerly-news-in-shorts/)
25. [facebook](https://www.apkmirror.com/apk/facebook-2/facebook/) 25. [facebook](https://www.apkmirror.com/apk/facebook-2/facebook/)
26. [grecorder](https://www.apkmirror.com/apk/google-inc/google-recorder/)
<br>Please verify the source of original APKs yourself with links provided. I'm not responsible for any damaged caused. <br>Please verify the source of original APKs yourself with links provided. I'm not responsible for any damaged caused.
If you know any better/safe source to download clean. Please raise a PR. If you know any better/safe source to download clean. Please raise a PR.
+1
View File
@@ -71,6 +71,7 @@ class RevancedConfig(object):
"instagram": f"{self.apk_mirror}/apk/instagram/instagram-instagram/", "instagram": f"{self.apk_mirror}/apk/instagram/instagram-instagram/",
"inshorts": f"{self.apk_mirror}/apk/inshorts-formerly-news-in-shorts/", "inshorts": f"{self.apk_mirror}/apk/inshorts-formerly-news-in-shorts/",
"facebook": f"{self.apk_mirror}/apk/facebook-2/facebook/", "facebook": f"{self.apk_mirror}/apk/facebook-2/facebook/",
"grecorder": f"{self.apk_mirror}/apk/google-inc/google-recorder/",
} }
self.apk_mirror_version_urls = { self.apk_mirror_version_urls = {
key: value + value.split("/")[-2] key: value + value.split("/")[-2]
+1
View File
@@ -36,6 +36,7 @@ class Patches(object):
"com.instagram.android": "instagram", "com.instagram.android": "instagram",
"com.nis.app": "inshorts", "com.nis.app": "inshorts",
"com.facebook.orca": "facebook", "com.facebook.orca": "facebook",
"com.google.android.apps.recorder": "grecorder",
} }
revanced_app_ids = { revanced_app_ids = {
key: (value, "_" + value) for key, value in _revanced_app_ids.items() key: (value, "_" + value) for key, value in _revanced_app_ids.items()