码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2014-09-02 12:29:54      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:mystra   android studio   sdk version   cause failed to find   opencv   

"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" 问题

标签:mystra   android studio   sdk version   cause failed to find   opencv   

原文地址:http://blog.csdn.net/caroline_wendy/article/details/39002793

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!