NDK 未配置-6ren"> NDK 未配置-我正在尝试在 android studio 上编译我的代码,但我被困在了这一点上。我没有任何东西可以使用 ndk 进行编译,但每次编译都会因此错误而失败。 当我检查 workspace.xml 时,它-6ren">
gpt4 book ai didi

android - 出现错误 --> "Execution failed for task">NDK 未配置

转载 作者:太空宇宙 更新时间:2023-11-03 12:53:13 25 4
gpt4 key购买 nike

我正在尝试在 android studio 上编译我的代码,但我被困在了这一点上。我没有任何东西可以使用 ndk 进行编译,但每次编译都会因此错误而失败。

当我检查 workspace.xml 时,它包含用于 compileDebugNdk 和 compileReleaseNdk 的 ExternalTask​​Pojo。

我不需要它们,但无法找到删除它们的方法,因为它是一个自动生成的文件。

请提出建议。

编辑->build.gradle文件

apply plugin: 'android-library'

android {
compileSdkVersion 19
buildToolsVersion "19.0.3"

defaultConfig {
minSdkVersion 9
targetSdkVersion 9
}

buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}

dependencies {
compile project(':a')
compile project(':b')
compile project(':c')
compile project(':d')
compile project(':e')
compile 'com.android.support:support-v4:19.1.0'
}

另一个build.gradle文件

   apply plugin: 'android'

android {
compileSdkVersion 19
buildToolsVersion "19.0.3"

defaultConfig {
minSdkVersion 9
targetSdkVersion 9


}

buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard- rules.txt'
}
}
}

dependencies {
compile project(':a')
compile project(':facebookSDK')
compile project(':b')
compile project(':c')
compile project(':d')
compile project(':volley')
compile project(':e')
compile project(':volley')
compile project(':f')
compile project(':g')
compile project(':h')
compile 'com.android.support:support-v4:19.1.0'
compile 'com.google.android.gms:play-services:+'
compile files('libs/AF-Android-SDK-v1.3.16.0.jar')
compile files('libs/lib1')
compile files('libs/lib2')
compile files('libs/lib3')
compile files('libs/lib4')
compile files('libs/FlurryAgent.jar')
compile files('libs/renderscript-v8.jar')
compile files('libs/lib5')
}

最佳答案

一段时间后,我能够解决我的问题。我通过在 build.gradle 文件中添加以下属性来禁用 ndk-build。

sourceSets.main {
jniLibs.srcDir 'src/main/libs'
jni.srcDirs = [] //disable automatic ndk-build call
}

关于android - 出现错误 --> "Execution failed for task">NDK 未配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26271394/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com