找不到与com.android.support:support-v7:20.0.+匹配的任何版本

时间:2014-12-26 09:00:42

标签: android android-studio

我是Android开发的新手 我写了

  

classpath' com.android.tools.build:gradle:1.0.0 +'

     

runproduard()替换为minifyenabled。结果:建立成功

但在运行时发生此错误:

我的代码是:

  

compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:21.0.+' compile 'com.android.support:support-v4:21.0.+'

但有698个警告,因为找不到在libs文件夹中添加的引用类xom

  

错误:任务':app:proguardMobifoodDemoDebug'执行失败。   java.io.IOException:请先纠正上述警告。

我的android studio版本是1.0.2,gradle版本是2.2.1

2 个答案:

答案 0 :(得分:2)

将应用内部版本.gradle中的com.android.support:support-v7:20.0.+更改为

'com.android.support:appcompat-v7:21.0.2'

答案 1 :(得分:2)

模块目录中的build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    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.+'
    compile 'com.android.support:support-v4:21.0.+'
}

“+”允许gradle自动升级到jar的最新错误修复版本。

最外层项目目录中的build.gradle

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.0.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

local.properties

sdk.dir=/Tools/adt-bundle-mac-x86_64-20140624/sdk