問題描述:
// 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.csdn.net/louyxlovess/article/details/50608823
