문제 :
No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
해결책 :
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
}
----
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}----
compile -> implementation로 모두 변경
compileSdkVersion, targetSdkVersion 맞추기
'Native > Android' 카테고리의 다른 글
| [에러 해결] AAPT2 에러 (0) | 2018.10.02 |
|---|---|
| 설치 (0) | 2018.09.28 |
| uses-permission (권한 설정) 하는 코드 (0) | 2018.09.27 |
| class 추가할때 (.java) (0) | 2018.09.27 |