ide/androidstudio

rxAndroid rxlifecycle RetroLambda, Lambda Error

C/H 2016. 12. 21. 08:30

rxlifecycle RetroLambda, Lambda 형식이 먹히지 않을 때

buildscript {
    ...
    dependencies {
        ...
        classpath 'me.tatarka:gradle-retrolambda:3.1.0'
    }
}

apply plugin: 'me.tatarka.retrolambda'


android {
    ...
    configurations.all {
        resolutionStrategy.force 'com.google.code.findbugs:jsr305:3.0.1'
    }
    ...
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    ...
}


반응형

'ide > androidstudio' 카테고리의 다른 글

현재 메소드 명  (0) 2016.12.23
com.jakewharton:butterknife:8.4.0 @BindView 에러  (0) 2016.12.22
rxAndroid rxlifecycle prepareDebugAndroidTestDependencies Error  (0) 2016.12.20
buildInfoDebugLoader  (0) 2016.12.19
Gradle Android  (0) 2016.12.01