4

アプリケーションで retrolambda を使用しようとしていますが、問題に直面しています

build.gradle プロジェクト

buildscript {
    repositories {
        jcenter()
        mavenLocal()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.3'
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
        classpath 'me.tatarka:gradle-retrolambda:3.2.5'

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

allprojects {
    repositories {
        jcenter()
        mavenLocal()
    }

}

task clean(type: Delete) {
    delete rootProject.buildDir
}

build.gradle アプリ

apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
apply plugin: 'me.tatarka.retrolambda'


android {
    compileSdkVersion 23
    buildToolsVersion "24.0.1"

    defaultConfig {
        applicationId "psystem.co.reaya"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
        jackOptions {
            enabled true
        }

    }
    dexOptions {
        preDexLibraries false
        javaMaxHeapSize "4g"
        incremental true

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

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.google.code.gson:gson:2.4'
    retrolambdaConfig 'net.orfjackal.retrolambda:retrolambda:+'
    compile 'com.android.support:multidex:1.0.1'
}



my tries to fix the issue remove jack options , I got this error  `org.gradle.execution.TaskSelectionException: Task ',' not found in root project 'Reaya'.`

誰でも私の問題を解決するのを助けることができます

ありがとうございました

4

3 に答える 3

5

1. Android スタジオを 2.1 以降のバージョンに更新します。2.「適用プラグイン: 'me.tatarka.retrolambda'」を削除してみてください!

于 2016-12-19T08:49:36.917 に答える