Generating Multiple Apk according to the Native ABI
问题 I am building release apk based on the ABI because of apk size to publish on Play store . So I started apk building for ABI = armeabi-v7a then building ABI = x86 and ABI = areambi so my gradle look like this app gradle android { compileSdkVersion 26 buildToolsVersion "26.0.1" defaultConfig { applicationId "com.package" minSdkVersion 18 targetSdkVersion 26 versionCode 1 versionName "1.0" multiDexEnabled true ndk { abiFilters "armeabi-v7a" } } buildTypes { release { minifyEnabled false