zoukankan      html  css  js  c++  java
  • 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:
    dk)

    这个问题一般是由于你的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

  • 相关阅读:
    zeplin 登录效果实现
    instanceof 是如何工作的
    JavaScript版—贪吃蛇小组件
    C#+HtmlAgilityPack—糗事百科桌面版V2.0
    Google自定义搜索引擎
    百度网盘资源搜索器
    CSS元素类型
    CSS盒子模型
    Android调用Web服务
    无法将匿名方法转换为System.Delegate
  • 原文地址:https://www.cnblogs.com/chen110xi/p/6606029.html
Copyright © 2011-2022 走看看