Notice
Recent Posts
Recent Comments
올해는 머신러닝이다.
flutter Codelab 돌릴 경우 오류 발생시 본문
Flutter Codelab을 돌려볼때 오류가 발생될 경우가 있다.
코드랩 위치 : https://codelabs.developers.google.com/codelabs/mdc-101-flutter
오류 내용은 No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
해결방법은 2가지를 체크 해야 한다.
1. android 폴더내에 project 레벨에서 build.gradle 에서 dependencies 가 3.1 이상으로 되어있는 지 체크하자.
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
}
2. android/gradle/wrapper 폴더내 gradle-wrapper.properties 에 4.6으로 설정
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
이 두가지를 설정시 별 문제 없이 빌드 되는 걸 볼수 있다.
이상으로 해결방법에 대해 공유해본다.
'스터디 > Flutter' 카테고리의 다른 글
커스텀 뷰 공부 1일차 (0) | 2019.03.20 |
---|---|
Flutter + Sqflite + Stetho 사용하기 (0) | 2019.01.04 |
No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android (0) | 2018.11.29 |
Flutter WhatsApp 클론 (부산 4주차 스터디) (0) | 2018.11.14 |
Flutter WhatsApp 화면 개발 (부산 3주차 스터디) (0) | 2018.11.06 |