Include x86_64 architecture only in debug build
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user