From 3f9b0451cbff3ba623ad4cda1bfea9d24d157d21 Mon Sep 17 00:00:00 2001 From: Rocco Salvetti <38426041+PimySoft@users.noreply.github.com> Date: Wed, 7 Jan 2026 17:44:52 +0000 Subject: [PATCH] Fix Android SDK setup: use correct action parameters - Fix: Use 'packages' parameter instead of deprecated api-level/target/arch - Install required packages: platform-tools, android-33, build-tools, NDK - Accept Android SDK licenses automatically - This fixes the 'Unexpected input(s)' error --- .github/workflows/ci-browserstack.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-browserstack.yml b/.github/workflows/ci-browserstack.yml index a3ed9f5..5c4ed6b 100644 --- a/.github/workflows/ci-browserstack.yml +++ b/.github/workflows/ci-browserstack.yml @@ -36,9 +36,12 @@ jobs: - name: 📱 Setup Android SDK uses: android-actions/setup-android@v3 with: - api-level: 33 - target: default - arch: x86_64 + packages: | + platform-tools + platforms;android-33 + build-tools;33.0.0 + ndk;27.1.12297006 + accept-android-sdk-licenses: true - name: 📥 Install dependencies run: npm ci