diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 3e765e8..ce1ea83 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -15,7 +15,7 @@ jobs: build-apk-pr-check: uses: ./.github/workflows/build-artifact.yml with: - FILES_TO_EXPECT: 16 + FILES_TO_EXPECT: 17 secrets: ENVS: | CI_TEST=True diff --git a/README.md b/README.md index dcc2308..d9c836f 100644 --- a/README.md +++ b/README.md @@ -140,6 +140,7 @@ By default, script build the version as recommended by Revanced team. 15. [my-expenses](https://my-expenses.en.uptodown.com/android) 16. [backdrops](https://backdrops.en.uptodown.com/android) 17. [expensemanager](https://apksos.com/app/com.ithebk.expensemanager) + 18. [tasker](https://www.apkmirror.com/apk/joaomgcd/tasker-crafty-apps-eu/)
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 95a7fc5..1890f91 100644 --- a/src/config.py +++ b/src/config.py @@ -64,6 +64,7 @@ class RevancedConfig: "icon_pack_studio": f"{self.apk_mirror}/apk/smart-launcher-team/icon-pack-studio/", "twitch": f"{self.apk_mirror}/apk/twitch-interactive-inc/twitch/", "windy": f"{self.apk_mirror}/apk/windy-weather-world-inc/windy-wind-weather-forecast/", + "tasker": f"{self.apk_mirror}/apk/joaomgcd/tasker-crafty-apps-eu/", } self.apk_mirror_version_urls = { "reddit": f"{self.apk_mirror_urls.get('reddit')}reddit", @@ -77,6 +78,7 @@ class RevancedConfig: "icon_pack_studio": f"{self.apk_mirror_urls.get('icon_pack_studio')}icon-pack-studio", "twitch": f"{self.apk_mirror_urls.get('twitch')}twitch", "windy": f"{self.apk_mirror_urls.get('windy')}windy-wind-weather-forecast", + "tasker": f"{self.apk_mirror_urls.get('tasker')}tasker-crafty-apps-eu/", } self.archs_to_build = env.list("ARCHS_TO_BUILD", []) self.alternative_youtube_patches = env.list("ALTERNATIVE_YOUTUBE_PATCHES", []) diff --git a/src/patches.py b/src/patches.py index eaa6b84..c369f76 100644 --- a/src/patches.py +++ b/src/patches.py @@ -28,6 +28,7 @@ class Patches(object): "org.totschnig.myexpenses": ("my-expenses", "_expenses"), "com.backdrops.wallpapers": ("backdrops", "_backdrops"), "com.ithebk.expensemanager": ("expensemanager", "_expensemanager"), + "net.dinglisch.android.taskerm": ("tasker", "_tasker"), } revanced_extended_app_ids = { "com.google.android.youtube": ("youtube", "_yt"), @@ -140,6 +141,7 @@ class Patches(object): "my-expenses": "_expenses", "backdrops": "_backdrops", "expensemanager": "_expensemanager", + "tasker": "_tasker", } if not (app_name := app_names.get(app)): raise AppNotFound(app) diff --git a/src/utils.py b/src/utils.py index 56e6dde..043498d 100644 --- a/src/utils.py +++ b/src/utils.py @@ -24,6 +24,7 @@ all_builds = [ "windy", "my-expenses", "backdrops", + "tasker", ] possible_archs = ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]