Mac Android Studio 使用2.3.3 报No toolchains found in the NDK toolchains folder for ABI with prefix:...

一、背景

  • 一个项目,必须使用Android studio2.3.3
  • gradle 指定2.3.3
  • mac环境

不要问我为什么,两个233是碰巧。


二、问题

新建项目,报错No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android

尝试解决

AS内部下载最新NDK,无法解决。

网上的其他办法,是下载最新版的NDK toolchains,替换本地环境目录。

但是最新的版是让r20的。不可以

三、最终解决

AS2.3.3的应该使用r16的。

NDK Version 16 的下载链接
win32:https://dl.google.com/android/repository/android-ndk-r16b-windows-x86.zip
win64:https://dl.google.com/android/repository/android-ndk-r16b-windows-x86_64.zip
mac:https://dl.google.com/android/repository/android-ndk-r16b-darwin-x86_64.zip
linux:https://dl.google.com/android/repository/android-ndk-r16b-linux-x86_64.zip

AS,打开File - Project Structure... -

Mac Android Studio 使用2.3.3 报No toolchains found in the NDK toolchains folder for ABI with prefix:..._第1张图片
image.png

进入And roid NDK location,把下载下来的toolchains,替换一下。

END.

你可能感兴趣的:(Mac Android Studio 使用2.3.3 报No toolchains found in the NDK toolchains folder for ABI with prefix:...)