Skip to content

Commit

Permalink
Drop support for 32-bit x86 Android.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
MikuAuahDark committed Feb 23, 2024
1 parent 9da3e56 commit 590f733
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 590f733

Please sign in to comment.