Reputation: 326
I am getting the following error:
No toolchains found in the NDK toolchains folder for the ABI with prefix: mipsel-linux-android
Upvotes: 1
Views: 579
Reputation: 326
In the build.gradle
(Project: XXX) file, in dependencies I updated the classpath as follows:
classpath 'com.android.tools.build:gradle:3.2.1'
Note: you have to enter the most recent version
Upvotes: 3
Reputation: 12698
I had the same problem (a very unexpected "No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android") when I opened an old project, and fixed it by updating some build settings:
Replace
classpath 'com.android.tools.build:gradle:3.0.1'
to
classpath 'com.android.tools.build:gradle:3.2.1'
Upvotes: 1