Flutter:填坑常见错误 No toolchains found in the NDK toolchains folder for ABI with prefix mips64el-linux-a

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

 

最新的NDK,已经 移除对mips的支持,较早版本的android gradle plugin 依然会检查mips工具链是否存在。

解决:

更新android gradle plugin 到 3.1 或更高版本。

classpath "com.android.tools.build:gradle:3.2.0"

或者采用下面的办法,愚弄一下检查程序。

# on Mac

cd  ~/Library/Android/sdk/ndk-bundle/toolchains

ln -s aarch64-linux-android-4.9 mips64el-linux-android

ln -s arm-linux-androideabi-4.9 mipsel-linux-android

你可能感兴趣的:(Flutter)