app/build.gradle: allow building x86_64

This commit is contained in:
Alexander Sosedkin 2024-06-30 20:34:16 +02:00
parent c343cf8559
commit 4fcd96b25e

View file

@ -46,7 +46,7 @@ android {
// fdroid checkupdates looks for literal versionCode/versionName,
// can't get fancy with these and use string interpolation and similar
ndk {
abiFilters 'arm64-v8a'
abiFilters 'arm64-v8a', 'x86_64'
}
minSdkVersion project.properties.minSdkVersion.toInteger()