From 8166cca1c173e9d014f4502779dec5b3f88cca92 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Sat, 1 Jul 2023 18:27:37 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Added=20Sony=20Headphone?= 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 c52e1e4..0347aea 100644 --- a/README.md +++ b/README.md @@ -153,6 +153,7 @@ By default, script build the version as recommended by Revanced team. 26. [grecorder](https://www.apkmirror.com/apk/google-inc/google-recorder/) 27. [trakt](https://www.apkmirror.com/apk/trakt/trakt/) 28. [candyvpn](https://www.apkmirror.com/apk/liondev-io/candylink-vpn/) + 29. [sonyheadphone](https://www.apkmirror.com/apk/sony-corporation/sony-headphones-connect/)
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 de2a7a9..98f54db 100644 --- a/src/config.py +++ b/src/config.py @@ -74,6 +74,7 @@ class RevancedConfig(object): "grecorder": f"{self.apk_mirror}/apk/google-inc/google-recorder/", "trakt": f"{self.apk_mirror}/apk/trakt/trakt/", "candyvpn": f"{self.apk_mirror}/apk/liondev-io/candylink-vpn/", + "sonyheadphone": f"{self.apk_mirror}/apk/sony-corporation/sony-headphones-connect/", } self.apk_mirror_version_urls = { key: value + value.split("/")[-2] diff --git a/src/patches.py b/src/patches.py index 831e0cd..e51f770 100644 --- a/src/patches.py +++ b/src/patches.py @@ -39,6 +39,7 @@ class Patches(object): "com.google.android.apps.recorder": "grecorder", "tv.trakt.trakt": "trakt", "com.candylink.openvpn": "candyvpn", + "com.sony.songpal.mdr": "sonyheadphone", } revanced_app_ids = { key: (value, "_" + value) for key, value in _revanced_app_ids.items()