LoginSignup
21
9

More than 5 years have passed since last update.

AndroidStudio3.2で既存のAndroidStudioProjectでGradle Syncが失敗するトラブルの解決策

Posted at

MacでAndroidStudio3.2で既存のプロジェクトを開くと以下のようなエラーが出て Gradle sync が失敗します。

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

こういう場合はMacのターミナル上で以下のコマンドを実行してからAndroidStudioを再起動すれば問題なくいけます。

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

参考サイト

21
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
21
9