我想编译一个开源的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 (Android Studio 3.2.1) Java项目时

类路径的com.android.tools.build: gradle: 2.0.0-beta6

所以我已经降级到

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

保留旧版本并不是最好的解决方案,但可能这只是测试版中NDK路径在本地的临时错误。属性仍然相同,但IDE不再抱怨

其他回答

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

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

要解决这个问题,请转到:

工具->Sdk管理器-> Android Sdk ->Sdk工具在Android Studio和 取消选中NDK版本,只选择20.1.5948944版本并安装它。

我在linux(Ubuntu)机器上使用这种技术解决了同样的问题。

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

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

在我的案例中,一些支持文件在新的NDK版本“23.0.7599858”中丢失了,所以我将版本降级为“22.1.7171670”。你也可以在"../Sdk/ NDK "上找到所有下载的NDK版本。

android {
compileSdkVersion 30
buildToolsVersion "29.0.2"

defaultConfig {
    ...
    ...
    ndkVersion "22.1.7171670"
}

如果不使用NDK,则取消设置环境变量ANDROID_NDK_HOME。