Android解决NDK not configured问题

时间:2024-09-12 17:04:50

问题描述:

//    Error:Execution failed for task ':SoftkeyApp:compileDebugNdk'.
// > NDK not configured.
// Download the NDK from http://developer.android.com/tools/sdk/ndk/.Then add ndk.dir=path/to/ndk in local.properties.
// (On Windows, make sure you escape backslashes, e.g. C:\\ndk rather than C:\ndk)

这个问题一般是由于你的sdk版本过高导致NDK找不到导致错误的发生 
解决方法: 
①在你的local.properties文件中添加你的ndk路径

## This file is automatically generated by Android Studio.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
#
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
#Wed Jan 27 14:00:08 CST 2016
sdk.dir=D\:\\YAOWork\\adt-bundle-windows-x86_64-20131030\\sdk
ndk.dir=D\:\\android-ndk-r10

②在你的build.properties配置文件里的Android{}里面添加如下代码块(和defaultConfig{}同级)

sourceSets {
main {
jni.srcDirs = []
}
}

这样就没有问题了,可以运行了

https://developer.android.com/ndk/downloads/index.html

http://blog.****.net/louyxlovess/article/details/50608823