我想编译一个开源的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。我不知道我是否应该提到其他东西,所以如果你需要任何信息,请评论。


当前回答

打开Android Studio,选择Tools,然后选择Android,然后选择SDK,取消勾选NDK。如果你不需要这个,重新启动Android Studio。

其他回答

简单的解决方案是下载并解压以下文件,其中包含mips64el-linux-android-4.9和mipsel-linux-android-4.9文件夹,到sdk "android-sdk\ndk-bundle\toolchains"中的toolchains文件夹中。

下载此文件和附加到工具链文件夹

这个问题的最佳解决方案是:

进入SDK管理器。 接下来选择SDK工具。 取消选择NDK(并排)。 Apply和OK。

我也遇到过类似的问题,但由于项目需求,我想使用NDK r9d版本。

在当地。属性:路径设置为ndk。dir=C\:\\Android\\ndk\\ Android -ndk-r9d但这导致了一个问题:

在前缀为[toolchain-name]的ABI的NDK toolchains文件夹中没有找到工具链

解决方案是:

使用sdk管理器安装最新的NDK 将缺失的工具链[toolchain-name]从新的ndk复制到旧的ndk。在我的例子中,从sdk\ndk-bundle\工具链到\ndk\android-ndk-r9d\工具链 重复该过程,直到所有所需的工具链都存在

在我看来,复制的工具链没有被使用,但出于某种原因,它们需要在那里。

卸载ndk为我解决了这个问题。

在sdk工具中删除所有的NDK。