Android解决NDK not configured问题

①在你的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 2016sdk.dir=D/://YAOWork//adt-bundle-windows-x86_64-20131030//sdkndk.dir=D/://android-ndk-r10


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

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

你可能感兴趣的:(Android)