After upgrading the Gradle plugin and Android Studio 4.2.1. I face this error while building the C++ library.
Caused by: com.android.builder.errors.EvalIssueException: NDK from ndk.dir at D:\Sdk\ndk\18.0.5002713 had version [18.0.x] which disagrees with android.ndkVersion [22.1.x]
Very simple solution. Remove ndk.dir
from local.properties,
and declare ndkVersion inside build.gradle in app/library level
android {
compileSdkVersion 30
ndkVersion "18.0.5002713"
...
}
Thanks
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With