项目编译出现:No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android

有时候从GitHub上下载下来的项目或者之前有NDK开发的项目,在ndk版本升级之后,项目编译出现了问题,提示没有对应的编译工具链,目前网上搜索的最多的做法是,下载之前的ndk版本,然后再拷贝缺少的部分。。。

这种做法确实可以解决问题,但是既然新版的ndk删掉了这些库,肯定是有他自己的理由,所以建议还是在新版本ndk不改动的基础上解决No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android这个问题

第一步,修改gradle-wrapper.properties文件,使用目前最新的4.6版本

distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip

第二步,修改项目的build.gradle,也使用目前最新的

classpath'com.android.tools.build:gradle:3.2.1'

第三步,如果出现了libc++_shared.so重复,则修改app的build.gradle文件

在android{ }中添加

packagingOptions {    

    pickFirst'lib/*/libc++_shared.so'

}

最后try again一下就好

你可能感兴趣的:(项目编译出现:No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android)