diff --git a/README.md b/README.md index b2dd5c8..4b1979c 100644 --- a/README.md +++ b/README.md @@ -139,6 +139,7 @@ By default, script build the version as recommended by Revanced team. 17. [my-expenses](https://my-expenses.en.uptodown.com/android) 18. [backdrops](https://backdrops.en.uptodown.com/android) 19. [sleep-as-android](https://sleep-as-android.en.uptodown.com/android) + 20. [anytracker](https://m.apkpure.com/anytracker-track-anything/com.shervinkoushan.anyTracker) 2. Remember to download the **_Microg_**. Otherwise, you will not be able to open YouTube. 3. By default, it will build only `youtube`. To build other apps supported by revanced team. diff --git a/src/config.py b/src/config.py index b14fcaa..b6bc946 100644 --- a/src/config.py +++ b/src/config.py @@ -29,7 +29,7 @@ class RevancedConfig: "backdrops", "sleep-as-android", ] - self.apk_pure = ["pflotsh-ecmwf", "hex-editor"] + self.apk_pure = ["pflotsh-ecmwf", "hex-editor", "anytracker"] self.keystore_name = env.str("KEYSTORE_FILE_NAME", "revanced.keystore") self.apps = env.list("PATCH_APPS", default_build) self.extended_apps: List[str] = ["youtube", "youtube_music"] diff --git a/src/patches.py b/src/patches.py index 3974adc..7b82009 100644 --- a/src/patches.py +++ b/src/patches.py @@ -30,6 +30,7 @@ class Patches(object): "org.totschnig.myexpenses": ("my-expenses", "_expenses"), "com.backdrops.wallpapers": ("backdrops", "_backdrops"), "com.urbandroid.sleep": ("sleep", "_sleep"), + "com.shervinkoushan.anyTracker": ("anytracker", "_anytracker"), } revanced_extended_app_ids = { "com.google.android.youtube": ("youtube", "_yt"), @@ -142,6 +143,7 @@ class Patches(object): "my-expenses": "_expenses", "backdrops": "_backdrops", "sleep": "_sleep", + "anytracker": "_anytracker", } if not (app_name := app_names.get(app)): raise AppNotFound(app)