美文网首页
解决"No toolchains found in the ND

解决"No toolchains found in the ND

作者: 哎呀呀额 | 来源:发表于2019-01-12 17:36 被阅读0次

    创建项目时遇到编译提示"No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android",

    查看新版NDK,发现NDK的更新记录里有一段话

    This version of the NDK is incompatible with the Android Gradle plugin

       version 3.0 or older. If you see an error like

       `No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android`,

       update your project file to [use plugin version 3.1 or newer]. You will also

       need to upgrade to Android Studio 3.1 or newer.


    也就是说新版本的NDK与3.0及以前旧版的Android Gradle plugin插件不兼容

    其实解决方法很简单,就是修改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

    }

    相关文章

      网友评论

          本文标题:解决"No toolchains found in the ND

          本文链接:https://www.haomeiwen.com/subject/cmucdqtx.html