No version of NDK matched the requested version

后端 未结 11 1970
醉梦人生
醉梦人生 2020-12-04 11:55

After updating to Android Gradle plugin 3.6.0 (released Feb 24, 2020), several project independently started failing with:

No v         


        
11条回答
  •  暖寄归人
    2020-12-04 12:48

    In the last version of Gradle there is no need to define the NDK versión inside the build.grade :

    android {
        ...
        ndkVersion "21.0.6352462"
        ...
    }
    

    We must install the suggested versión

    or define the current available version into the Android NDK Location:

提交回复
热议问题