Android解決NDK not configured問題


問題描述:

//    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


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM