【Android】「No toolchains found in the NDK toolchains folder for ABI with prefix: mipsel-linux-android」solution

 

村上
Author:Murakami

【Android】 How to deal with “No toolchains found in in the NDK toolchains folder for ABI with prefix: mipsel-linux-android” error

As you can see in the title, it’s about how to deal with errors in Android Studio.

The error sentence is here.

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

It seemed to be caused by missing necessary files in the NDK tool chain folder.

& nbsp;

Here is a post that I referred to for error resolution this time.

“No toolchains found in in the NDK toolchains folder for ABI with prefix: mips64el-linux-android” · Issues # 15 · google / filament · GitHub

https://github.com/google/filament/issues/15

In this, from Android’s Developer site,NDKThere was a workaround to download and download it and place it in the proper place, and did it.

First, download the package corresponding to your environment from below.

NDK Download | Android NDK | Android Developers

https://developer.android.com/ndk/downloads/?hl= zh-en

In the case of I,”Windows 64 bit“We installed the package.

Just the size700 MBIt takes about a little because there are so much.

Let’s expand it when the download is completed.

Next, open the location of the Android SDK.

In my Windows environment,

C:\Users\[ユーザー名]\AppData\Local\Android\sdk

was.

is therendk-bundleIn the folder, furthertoolchainsOpen the folder.

Within that folder,mips64el-linux-android-4.9Whenmipsel-linux-android-4.9Because it was not enough, I will copy the two from the downloaded / expanded file.

After that, go back to Android Studio and rebuild (or Try Again).

In my case, the build is complete with this.

& nbsp;

This was a solution to the error “No toolchains found in in the NDK toolchains folder for ABI with prefix: mipsel-linux-android”.

It is troublesome that errors of the system which the file is insufficient like this ….

It was nice to be able to solve it somehow.

Leave a Reply