Recent Posts
Recent Comments
반응형
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

오늘도 공부

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

스터디/Flutter

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

행복한 수지아빠 2018. 11. 29. 14:05
반응형

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


원인 : 오래된 flutter 플젝을 열때 나오는 버그이다. 

Open android/gradle/gradle-wrapper.properties and change this line:

distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

to this line:

distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

Open android/build.gradle and change this line:

classpath 'com.android.tools.build:gradle:3.0.1'

to this:

classpath 'com.android.tools.build:gradle:3.1.2'


반응형