2019年1月11日 星期五

android studio 出現錯誤 No toolchains found in the NDK toolchains folder for ABI with prefix mips64el-linux-android

最新版的NDK移除了對mips abi的支援,而早期版本的android gradle plugin還是會檢查 mips toolchain有沒有存在 更多資訊

1.解決方式:更新android gradle plugin到3.1以上或更新版本
2.替代方案:在android sdk內建立mipsel的資料夾

如下(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

沒有留言: