当前位置: 代码迷 >> 综合 >> ERROR: No toolchains found in the NDK toolchains folder for ABI with prefix: mipsel-linux-android
  详细解决方案

ERROR: No toolchains found in the NDK toolchains folder for ABI with prefix: mipsel-linux-android

热度:69   发布时间:2023-11-17 10:53:55.0

之前clone的一个项目就出现这个问题了,是NDK的问题,今天clone项目又遇到了。


PS:就是你clone的项目AS版本太低。

例如

dependencies {classpath 'com.android.tools.build:gradle:2.2.2'// NOTE: Do not place your application dependencies here; they belong// in the individual module build.gradle files}

你需要改为3.2.0以上。

    dependencies {classpath 'com.android.tools.build:gradle:3.3.2'// NOTE: Do not place your application dependencies here; they belong// in the individual module build.gradle files}

 

  相关解决方案