Support for ANDROID_NDK_HOME is deprecated and will be removed in the future

402 阅读1分钟

报错如下:

Support for ANDROID_NDK_HOME is deprecated and will be removed in the future. Use android.ndkVersion in build.gradle instead.

原因

已经说明了,ANDROID_NDK_HOME废弃了,使用ndkVersion代替。

修改

在app module中build.gradle的android中增加ndkVersion。可以在下面中找到ndkVerison的版本

image.png

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.3"
    ndkVersion "21.4.7075529"
}