1

我在 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 文件中进行哪些更改。请提出一些建议...

4

1 回答 1

0

在 Eclipse 中更新依赖项时,我遇到了类似的错误。尝试更新到最新的插件版本并更改retrolambdame.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'
    }
}

...
于 2015-01-26T13:45:03.380 回答