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

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

评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值