From 1f8b855cf947a81291639a275b9efcde7b9fb5ae Mon Sep 17 00:00:00 2001 From: Harry Winkler Date: Mon, 26 Jan 2026 11:20:49 -0500 Subject: [PATCH] Fix Android SDK setup by removing deprecated tools package The android-actions/setup-android@v3 action defaults to installing `tools platform-tools`, but the legacy `tools` package has been deprecated and removed by Google, causing CI failures. Explicitly set packages to only `platform-tools` to avoid the error. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8cc86bd63..a86f715f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -627,6 +627,7 @@ jobs: uses: android-actions/setup-android@v3 with: accept-android-sdk-licenses: false + packages: platform-tools - name: Setup Gradle uses: gradle/actions/setup-gradle@v4