diff --git a/app/build.gradle b/app/build.gradle index 55995c585..b4591a0b3 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -26,8 +26,19 @@ android { flavorDimensions "abi" productFlavors { // replace the libraries with 64-bit versions when they're ready - arm { dimension "abi" } - x86 { dimension "abi" } + // Processor architectures + arm { + dimension "abi" + ndk { + abiFilter "armeabi-v7a" + } + } + x86 { + dimension "abi" + ndk { + abiFilter "x86" + } + } } compileOptions {