I am constantly getting this warning while building my android studio code using terminal command gradle clean assembleRelease:
gradle clean assembleRelease
Unable to strip librar
You can try using the following configuration in app/build.gradle.
android { packagingOptions { // exclude ARMEABI native so file, ARMEABI has been removed in NDK r17. exclude "lib/armeabi/**" } }
Remove (or make optional) MIPS native library #3504 Android-ABIs