我想编译一个开源的android项目(Netguard)使用gradel (gradlew清洁构建)但我遇到了这个错误:

A problem occurred configuring project ':app'.
> Exception thrown while executing model rule: NdkComponentModelPlugin.Rules#cre
ateToolchains
   > No toolchains found in the NDK toolchains folder for ABI with prefix: llvm

我搜索了一下,但没有发现任何有用的东西。这是主要的build.gradle:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle-experimental:0.6.0-alpha1'
    }
}
allprojects {
    repositories {
        jcenter()
    }
}
task clean(type: Delete) {
    delete rootProject.buildDir
}

这是构造。应用项目的Gradle:

apply plugin: 'com.android.model.application'

model {
    android {
        compileSdkVersion = 23
        buildToolsVersion = "23.0.2"

        defaultConfig.with {
            applicationId = "eu.faircode.netguard"
            minSdkVersion.apiLevel = 21
            targetSdkVersion.apiLevel = 23
            versionCode = 2016011801
            versionName = "0.76"
            archivesBaseName = "NetGuard-v$versionName-$versionCode"
        }
    }
    android.ndk {
        moduleName = "netguard"
        toolchain = "clang"
        ldLibs.add("log")
    }
    android.sources {
        main {
            jni {
                source {
                    srcDir "src/main/jni/netguard"
                }
                exportedHeaders {
                }
            }
        }
    }
    android.buildTypes {
        release {
            minifyEnabled = true
            proguardFiles.add(file('proguard-rules.pro'))
            ndk.with {
                debuggable = true
            }
        }
    }
    android.buildTypes {
        debug {
            ndk.with {
                debuggable = true
            }
        }
    }
    android.productFlavors {
        create("all") {
        }
    }
}

dependencies {


compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.1.+'
    compile 'com.android.support:recyclerview-v7:23.1.+'
    compile 'com.squareup.picasso:picasso:2.5.+'
}

我使用gradle-2.9-all和android-ndk-r10e。我不知道我是否应该提到其他东西,所以如果你需要任何信息,请评论。


当前回答

在你的项目级Gradle文件中增加依赖项 类路径版本由低到高

dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0'
    }

像这样改变

dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
    }

其他回答

我在Windows 8机器上将Android studio从2.0升级到2.1时也遇到过同样的问题。

我找到了一个解决办法。请按以下步骤操作。

从https://developer.android.com/ndk/downloads/index.html下载android NDK for windows。 提取相同的文件并从bundle中复制“toolchain”文件夹。 将文件夹粘贴在C:\android-sdk-win\ NDK -bundle下的installed NDK文件夹下。[安装路径可能会根据您的安装而有所不同] 重新启动android studio。

这是因为Android工作室无法通过稳定渠道获得完整的NDK更新。如果你不使用NDK进行项目开发,你可以简单地从SDK目录中删除NDK文件夹。

找到你自己的本地android-SDK,如果你下载了ndk的相关SDK,会有一个名为“ndk-bundle”的文件夹

里面有一个名为“toolchains”的文件夹。

我们注意到里面没有mips64el相关的文件。

解决方法如下:

点击此处,可通过浏览器单独下载NDK包。解压缩后,打开“toolchains”文件夹,将其与android-sdk->ndk-bundle->toolchains文件夹进行比较,找到缺失的文件夹,复制过去三个。重新编译,问题就解决了。

只需将您的Android Studio升级为最新版本>>,即可根据您的项目连接互联网下载内容。

在local中添加下面的行。属性(SDK的位置)

ndk.dir=C\:\\Users\\<username>\\AppData\\Local\\Android\\Sdk\\ndk-bundle

我尝试用以下方法来解决这个问题:

Stay Android build tools version the same with gradle version. For example:if you use the build tools version is 3.3.0,your gradle version must be 4.10.1.You can reference by the link https://developer.android.com/studio/releases/gradle-plugin and chagne your build tools & gradle version in your AS(File->Project Structure->Project) If method1 don't work,you can custom your ndk toolchains version to solve the problem :like download ndk18 or ndk16 , setting the ndk path is your AS(File->Project Structure->SDK Location->Android NDK Location)