Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> Android開發教程 >> Android:cause failed to find target android-14問題

Android:cause failed to find target android-14問題

編輯:Android開發教程

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'
        }  
    }  
}

查看本欄目更多精彩內容:http://www.bianceng.cn/OS/extra/

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved