From 715e20f5c3082ff7c0acc03421838e1e0c80e7c5 Mon Sep 17 00:00:00 2001 From: izzy2lost Date: Mon, 28 Jul 2025 21:35:14 -0400 Subject: [PATCH 1/2] Try universal build --- android/app/build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index c7858fb9..fcb336cf 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -25,8 +25,7 @@ android { externalNativeBuild { cmake { arguments "-DSDL_SHARED=ON", "-DANDROID_STL=c++_static", "-DHAVE_LD_VERSION_SCRIPT=OFF",'-DUSE_OPENGLES=ON' - // abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' - abiFilters 'arm64-v8a' + abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' } } } From 54b29e3cc5cb20756e52998803de166a6507edab Mon Sep 17 00:00:00 2001 From: izzy2lost Date: Mon, 28 Jul 2025 21:36:44 -0400 Subject: [PATCH 2/2] Try universal build for real this time --- android/app/build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index fcb336cf..173d6960 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -31,11 +31,11 @@ android { } // ✅ Universal APK: disables split APKs per ABI - // splits { - // abi { - // enable false - // } - //} + splits { + abi { + enable false + } + } buildTypes { release {