Merge pull request #194 from nikhilbadyal/new-app/sonyheadphone

🎨 Added Sony Headphone
This commit is contained in:
Nikhil Badyal
2023-07-01 18:36:27 +05:30
committed by GitHub
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -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/) 26. [grecorder](https://www.apkmirror.com/apk/google-inc/google-recorder/)
27. [trakt](https://www.apkmirror.com/apk/trakt/trakt/) 27. [trakt](https://www.apkmirror.com/apk/trakt/trakt/)
28. [candyvpn](https://www.apkmirror.com/apk/liondev-io/candylink-vpn/) 28. [candyvpn](https://www.apkmirror.com/apk/liondev-io/candylink-vpn/)
29. [sonyheadphone](https://www.apkmirror.com/apk/sony-corporation/sony-headphones-connect/)
<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
@@ -74,6 +74,7 @@ class RevancedConfig(object):
"grecorder": f"{self.apk_mirror}/apk/google-inc/google-recorder/", "grecorder": f"{self.apk_mirror}/apk/google-inc/google-recorder/",
"trakt": f"{self.apk_mirror}/apk/trakt/trakt/", "trakt": f"{self.apk_mirror}/apk/trakt/trakt/",
"candyvpn": f"{self.apk_mirror}/apk/liondev-io/candylink-vpn/", "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 = { self.apk_mirror_version_urls = {
key: value + value.split("/")[-2] key: value + value.split("/")[-2]
+1
View File
@@ -39,6 +39,7 @@ class Patches(object):
"com.google.android.apps.recorder": "grecorder", "com.google.android.apps.recorder": "grecorder",
"tv.trakt.trakt": "trakt", "tv.trakt.trakt": "trakt",
"com.candylink.openvpn": "candyvpn", "com.candylink.openvpn": "candyvpn",
"com.sony.songpal.mdr": "sonyheadphone",
} }
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()