• 解决"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"

    网上也有解决办法,就是下载旧版的NDK,将其中的toolchain复制到新版的NDK中

    但是感觉这种方式,不是解决的正道。

    经过对新版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
    }

  • 相关阅读:
    方便处理hosts的批处理脚本:hosts助手.bat
    IOS tableView的基本使用
    IOS 分页(pagingEnabled)
    IOS 添加定时器(NSTimer)
    IOS ScrollView的使用 and delegate
    IOS 设置定时器,执行方法
    IOS 拼接按钮文字
    IOS 设置ipone状态栏的样式
    IOS xcode常用的快捷键
    IOS 制作常用代码的快捷方式
  • 原文地址:https://www.cnblogs.com/Free-Thinker/p/10383861.html
Copyright © 2020-2023  润新知