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

從github上下載的項目報下面的錯誤

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

網上的答案說什麼ndk版本問題,其實只要把項目的gradle中的gradle版本號改成可用的就行

buildscript {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.0'//將這裏的版本號改成可用的

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章