From 6bf66c0afd93da1b502c30977fe0829ba6d1b1e2 Mon Sep 17 00:00:00 2001 From: Space-Banane Date: Wed, 24 Jun 2026 21:54:18 +0200 Subject: [PATCH] ci: pre-install NDK 27.1.12297006 before EAS local build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Gradle's auto-download of the NDK was failing on the runner with "Archive is not a ZIP archive" — the download was corrupted/unavailable. Fix by explicitly installing the NDK via sdkmanager after setup-android so it is present in $ANDROID_HOME before gradlew runs. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/build-android.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/build-android.yml b/.gitea/workflows/build-android.yml index 4c8f699..65f70ce 100644 --- a/.gitea/workflows/build-android.yml +++ b/.gitea/workflows/build-android.yml @@ -32,6 +32,9 @@ jobs: - name: 🏗 Setup Android SDK uses: android-actions/setup-android@v3 + - name: 🏗 Install Android NDK + run: yes | sdkmanager "ndk;27.1.12297006" + - name: 🏗 Setup Expo and EAS uses: expo/expo-github-action@v8 with: