From 590f733790b6cd9cfabd9283034bc3c577ab23c9 Mon Sep 17 00:00:00 2001 From: Miku AuahDark Date: Fri, 23 Feb 2024 11:28:39 +0800 Subject: [PATCH] Drop support for 32-bit x86 Android. 32-bit x86 Android is declining rapidly and it's possible that future Android NDK will drop this architecture (android/ndk#1772). Also related issue: love2d/love#1889. --- app/build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index f8b76da9..3e92ad3b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -28,6 +28,12 @@ android { } } + ndk { + //noinspection ChromeOsAbiSupport + abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86_64' + debugSymbolLevel 'full' + } + def getAppName = { def nameArray = project.properties["app.name_byte_array"] def name = project.properties["app.name"]