1. 程式人生 > >Error:NDK not configured. Download it with SDK manager

Error:NDK not configured. Download it with SDK manager

android studio問題:

Error:NDK not configured. Download it with SDK manager.

解決方案:

解決方法:
①在你的local.properties檔案中新增你的ndk路徑


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 = []
        }
    }