Include x86_64 architecture only in debug build

This commit is contained in:
Juha Heinanen
2025-04-18 09:58:57 +03:00
parent 34cfdbd1ac
commit 9dcb742631
+6 -1
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"))
} }
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
} }
@@ -42,6 +42,11 @@ android {
} }
} }
buildTypes { buildTypes {
debug {
ndk {
abiFilters.add("x86_64")
}
}
release { release {
isMinifyEnabled = true isMinifyEnabled = true
isShrinkResources = true isShrinkResources = true