android studio 1.0中的retrolambda错误中出错

时间:2014-12-04 11:53:39

标签: android android-studio gradle retrolambda

我在android studio 1.0工作

gradle文件显示此错误:

任务执行失败':app:compileRetroLambdaDebug'

apply plugin: 'android'
apply plugin: 'retrolambda'

android {
compileSdkVersion 21
buildToolsVersion '19.1.0'
defaultConfig {
    applicationId "xxxxxxxx"
    minSdkVersion 10
    targetSdkVersion 21
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
 productFlavors {
}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
   }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:support-v4:21.0.2'
    compile 'com.android.support:appcompat-v7:21.0.2'
    compile 'io.reactivex:rxandroid:0.23.0'

}

//顶级构建文件,您可以在其中添加所有子项目/模块共有的配置选项。

buildscript {
    repositories {
        jcenter()
        mavenCentral()
    }
dependencies {
    classpath 'com.android.tools.build:gradle:1.0.0-rc1'
    classpath 'me.tatarka:gradle-retrolambda:2.4.1'

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

allprojects {
    repositories {
         jcenter()
         mavenCentral()
     } 
}

我必须在gradle文件中做出哪些其他更改。请提出建议...

1 个答案:

答案 0 :(得分:0)

在更新eclipse中的依赖项时,我遇到了类似的错误。尝试更新到最新的插件版本并将retrolambda更改为me.tatarka.retrolambda,因为retrolambda插件已弃用,很快就会被删除。至少它是我为解决错误而采取的措施。

apply plugin: 'me.tatarka.retrolambda'
apply plugin: 'android'

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'me.tatarka:gradle-retrolambda:2.5.0'
        classpath 'com.android.tools.build:gradle:1.0.1'
    }
}

...