New app anytracker

This commit is contained in:
Nikhil Badyal
2022-12-02 09:35:52 +05:30
parent 2a9dc48a9a
commit eaf6221d03
3 changed files with 4 additions and 1 deletions
+1
View File
@@ -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) 17. [my-expenses](https://my-expenses.en.uptodown.com/android)
18. [backdrops](https://backdrops.en.uptodown.com/android) 18. [backdrops](https://backdrops.en.uptodown.com/android)
19. [sleep-as-android](https://sleep-as-android.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. 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. 3. By default, it will build only `youtube`. To build other apps supported by revanced team.
+1 -1
View File
@@ -29,7 +29,7 @@ class RevancedConfig:
"backdrops", "backdrops",
"sleep-as-android", "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.keystore_name = env.str("KEYSTORE_FILE_NAME", "revanced.keystore")
self.apps = env.list("PATCH_APPS", default_build) self.apps = env.list("PATCH_APPS", default_build)
self.extended_apps: List[str] = ["youtube", "youtube_music"] self.extended_apps: List[str] = ["youtube", "youtube_music"]
+2
View File
@@ -30,6 +30,7 @@ class Patches(object):
"org.totschnig.myexpenses": ("my-expenses", "_expenses"), "org.totschnig.myexpenses": ("my-expenses", "_expenses"),
"com.backdrops.wallpapers": ("backdrops", "_backdrops"), "com.backdrops.wallpapers": ("backdrops", "_backdrops"),
"com.urbandroid.sleep": ("sleep", "_sleep"), "com.urbandroid.sleep": ("sleep", "_sleep"),
"com.shervinkoushan.anyTracker": ("anytracker", "_anytracker"),
} }
revanced_extended_app_ids = { revanced_extended_app_ids = {
"com.google.android.youtube": ("youtube", "_yt"), "com.google.android.youtube": ("youtube", "_yt"),
@@ -142,6 +143,7 @@ class Patches(object):
"my-expenses": "_expenses", "my-expenses": "_expenses",
"backdrops": "_backdrops", "backdrops": "_backdrops",
"sleep": "_sleep", "sleep": "_sleep",
"anytracker": "_anytracker",
} }
if not (app_name := app_names.get(app)): if not (app_name := app_names.get(app)):
raise AppNotFound(app) raise AppNotFound(app)