Exclude x86_64 architecture

This commit is contained in:
Juha Heinanen
2025-03-30 11:22:51 +03:00
parent 2f3ff134a2
commit d4c7e3ade3

View File

@ -22,7 +22,7 @@ android {
} }
ndk { ndk {
// noinspection ChromeOsAbiSupport // noinspection ChromeOsAbiSupport
abiFilters.addAll(listOf("armeabi-v7a", "arm64-v8a", "x86_64")) abiFilters.addAll(listOf("armeabi-v7a", "arm64-v8a"/*, "x86_64"*/))
} }
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
} }