1.解决"No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android"错误
Android Studio 3.2,打开一个旧工程,编译提示"No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android"
1.网上也有解决办法,就是下载旧版的NDK,将其中的toolchain复制到新版的NDK中
2.修改build.gradle
改为3.1以上版本即可
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}