From 82b2951ae347f13d8a189ff0ce5689530c7991a3 Mon Sep 17 00:00:00 2001 From: izzy2lost Date: Wed, 13 Aug 2025 21:33:27 -0400 Subject: [PATCH] It works! No more all access to files needed --- android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index fc4459c3..73da3d25 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -25,7 +25,7 @@ android { externalNativeBuild { cmake { arguments "-DSDL_SHARED=ON", "-DANDROID_STL=c++_static", "-DHAVE_LD_VERSION_SCRIPT=OFF",'-DUSE_OPENGLES=ON' - abiFilters 'arm64-v8a' + abiFilters 'arm64-v8a', 'armeabi-v7a' } } }