Good afternoon, I encountered such a problem. In our project we use gradle and buildFlavor
productFlavors { arm { versionCode Integer.parseInt("8" + defaultConfig.versionCode) ndk { abiFilter "armeabi" } } x86 { versionCode Integer.parseInt("6" + defaultConfig.versionCode) ndk { abiFilter "x86" } } mips { versionCode Integer.parseInt("4" + defaultConfig.versionCode) ndk { abiFilter "mips" } } armv7 { versionCode Integer.parseInt("2" + defaultConfig.versionCode) ndk { abiFilter "armeabi" } } }
Now there is a need to use a library that provides only arm / arm7 / mips libraries, is it possible to ignore this library on x86 / x64?