From 368916e7caf9ca8431229e4b1837e4fa00a1f1e9 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Sat, 1 Jul 2023 18:09:24 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Added=20Google=20Recorder?= 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 | 1 + 3 files changed, 3 insertions(+) diff --git a/README.md b/README.md index b787065..4cd4cca 100644 --- a/README.md +++ b/README.md @@ -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/) 24. [inshorts](https://www.apkmirror.com/apk/inshorts-formerly-news-in-shorts/) 25. [facebook](https://www.apkmirror.com/apk/facebook-2/facebook/) + 26. [grecorder](https://www.apkmirror.com/apk/google-inc/google-recorder/)
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. diff --git a/src/config.py b/src/config.py index cb97b8e..ad83311 100644 --- a/src/config.py +++ b/src/config.py @@ -71,6 +71,7 @@ class RevancedConfig(object): "instagram": f"{self.apk_mirror}/apk/instagram/instagram-instagram/", "inshorts": f"{self.apk_mirror}/apk/inshorts-formerly-news-in-shorts/", "facebook": f"{self.apk_mirror}/apk/facebook-2/facebook/", + "grecorder": f"{self.apk_mirror}/apk/google-inc/google-recorder/", } self.apk_mirror_version_urls = { key: value + value.split("/")[-2] diff --git a/src/patches.py b/src/patches.py index 6ba7fb5..fb060b2 100644 --- a/src/patches.py +++ b/src/patches.py @@ -36,6 +36,7 @@ class Patches(object): "com.instagram.android": "instagram", "com.nis.app": "inshorts", "com.facebook.orca": "facebook", + "com.google.android.apps.recorder": "grecorder", } revanced_app_ids = { key: (value, "_" + value) for key, value in _revanced_app_ids.items()