gradle-retrolambda icon indicating copy to clipboard operation
gradle-retrolambda copied to clipboard

A gradle plugin for getting java lambda support in java 6, 7 and android

Results 76 gradle-retrolambda issues
Sort by recently updated
recently updated
newest added

:relay-library:generateReleaseBuildConfig UP-TO-DATE :relay-library:mergeReleaseResources UP-TO-DATE :relay-library:processReleaseResources UP-TO-DATE :relay-library:generateReleaseSources UP-TO-DATE :relay-library:incrementalReleaseJavaCompilationSafeguard UP-TO-DATE :relay-library:compileReleaseJavaWithJavac An exception has occurred in the compiler (1.8.0_121). Please file a bug against the Java compiler via the Java...

Log.e("cxy","heihei"); LambdaFI fi = () -> { LambdaActivity fi1 = this; Log.e("cxy","heihei"); }; fi.onClick(); public interface LambdaFI { public void onClick(); } when i set a breakpoint at third line(LambdaActivity...

Hi,I have a problem. I'm using retrolambda on Android Studio because lambda expression are not supported on it and I need them for my app. Here's my build.gradle file (about...

`com.sun.tools.javac.code.Symbol$CompletionFailure: 找不到java.lang.invoke.MethodType的类文件 Error:Execution failed for task ':app:compileDebugUnitTestJavaWithJavac'.` > Compilation failed; see the compiler error output for details. code in my build.gradle: ``` buildscript { repositories { jcenter() } dependencies {...

For using me.tatarka.retrolambda, one should add the classpath into the top build.gradle file and the plugin is applied as single element into the module build.gradle file. These information are ambiguous...

enhancement

Should be able to invoke retrolamba directly instead of running it in a separate processes passing command line args. This can improve performance and possibly simplify implementation. It should start...

enhancement

A library I am using is switching to java-8 - so I thought I use retro-lambda to work around this. Unfortunately it does not seem to work. ``` * What...

enhancement

lint produces a warning about this issue (and I've checked generated files as well - 3.2.5 ok, 3.3.0 broken) ``` classpath 'com.android.tools.build:gradle:2.2.0' classpath 'me.tatarka:gradle-retrolambda:3.3.0' compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8...

If an explicit generic cast is used it is not caught by retrolambda and generated lambda parameter uses Object instead of type provided by generic. For example in this valid...