首页 > 移动平台 > 详细

Android - "cause failed to find target android-14" 问题

时间:2015-10-14 23:29:31      阅读:362      评论:0      收藏:0      [点我收藏+]

"cause failed to find target android-14" 问题


本文地址: http://blog.csdn.net/caroline_wendy


Android Studio 在载入OpenCV库时, 会出现报错: "cause failed to find target android-14"


改动app目录中的build.gradle文件就可以. 把SdkVersion改为使用的SDK, 如19.

apply plugin: ‘android-library‘

android {
    compileSdkVersion 19
    buildToolsVersion "19.0.1"

    defaultConfig {
        minSdkVersion 8
        targetSdkVersion 19
    }

    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile(‘proguard-android.txt‘), ‘proguard-rules.txt‘
        }
    }
}


技术分享


版权声明:本文博主原创文章。博客,未经同意不得转载。

Android - "cause failed to find target android-14" 问题

原文:http://www.cnblogs.com/mengfanrong/p/4878893.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!