diff --git a/README.md b/README.md index 4cd4cca..983011f 100644 --- a/README.md +++ b/README.md @@ -151,6 +151,7 @@ By default, script build the version as recommended by Revanced team. 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/) + 27. [trakt](https://www.apkmirror.com/apk/trakt/trakt/)
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 ad83311..7a81d1b 100644 --- a/src/config.py +++ b/src/config.py @@ -72,6 +72,7 @@ class RevancedConfig(object): "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/", + "trakt": f"{self.apk_mirror}/apk/trakt/trakt/", } self.apk_mirror_version_urls = { key: value + value.split("/")[-2] diff --git a/src/patches.py b/src/patches.py index fb060b2..6f28f05 100644 --- a/src/patches.py +++ b/src/patches.py @@ -37,6 +37,7 @@ class Patches(object): "com.nis.app": "inshorts", "com.facebook.orca": "facebook", "com.google.android.apps.recorder": "grecorder", + "tv.trakt.trakt": "trakt", } revanced_app_ids = { key: (value, "_" + value) for key, value in _revanced_app_ids.items()