From 2e945a730febecfb830a2ec8dbd68d74b76ebff9 Mon Sep 17 00:00:00 2001 From: Tim Malseed Date: Sat, 10 Jan 2026 16:25:16 +1100 Subject: [PATCH] Exclude riscv ndk builds --- android/app/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 68f01585a..10da28382 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -28,6 +28,7 @@ android { testInstrumentationRunner = "com.simplecityapps.shuttle.CustomTestRunner" ndk { debugSymbolLevel = "FULL" + abiFilters += listOf("armeabi-v7a", "arm64-v8a", "x86", "x86_64") } }