Gradle无法找到目标sdk

时间:2015-06-04 16:52:04

标签: android gradle android-gradle

我需要编写一个带子模块的小型库。当我尝试同步我的项目时,我得到错误。

如果我使用gradle gradle:1.0.1

Error:Configuration with name 'default' not found.

如果build:gradle:1.2.3

Error:Cause: failed to find target 21 

但是已经安装了这个sdk。 这是我的build.gradle

uildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.2.3'
    }
}

apply plugin: 'com.android.library'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        minSdkVersion 9
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'
    compile project(':libs:UniversalImageLoader')
}

project(':libs:UniversalImageLoader') {
    apply plugin: 'com.android.library'
    android.compileSdkVersion = 21
    android.buildToolsVersion = "21.1.2"
    android.sourceSets.main {
        manifest.srcFile 'library/AndroidManifest.xml'
        java.srcDirs = ['library/src']
        res.srcDirs = ['library/res']
    }
}

有关此主题的任何想法?求助。

0 个答案:

没有答案