Programming/Android

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

YiDev 2018. 12. 4. 11:53

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

 

안드로이드 NDK 버전이 올라가면서 지원 중단된 버전의 Gradle을 쓰고 있으면 위와 같은 에러를 띄운다.

이럴 시 project 단계의 build.gradle에서 수정하면 된다.

 

dependencies
{
 ...
 classpath 'com.android.tools.build:gradle:3.1.4' //3.1.4 이상 버전으로
 ...
}