gradle-retrolambda
                                
                                
                                
                                    gradle-retrolambda copied to clipboard
                            
                            
                            
                        A gradle plugin for getting java lambda support in java 6, 7 and android
I have a root project which uses the `application` plugin and sub-projects as dependencies. When I try to execute the `run` task, I got the following error: > 09:37:21: Executing...
Does it support new [Gradle Experimental Plugin](http://tools.android.com/tech-docs/new-build-system/gradle-experimental)? It works well with usual Gradle pugin: `apply plugin: 'com.android.application'` It does not work with new gradle exeprimental plugin. `apply plugin: 'com.android.model.application'` I...
Gradle: 2.10 Android plugin: 2.1.0 Retrolambda: 3.2.0 Immutables: 2.2 ``` FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compileRetrolambdaDebug'. > java.io.FileNotFoundException: my-project/build/intermediates/classes/project/debug/META-INF/services ``` While...
Hi, I have an Android project with a pure java (i.e. not Android) project dependency. I'm using AssertJ, version 3 of which is compiled using Java 8, for unit tests....
Hi, I want to know if there is a way to configure input directory for the retrolambda plugin. It seems to me its not configurable since I can't see any...
Since switching to the new beta `3.3.0-beta4`, every time I run from Android Studio, I get the following error: ``` Error:When running gradle with java 5, 6 or 7, you...
I have a class like this one: ``` java public abstract class RadioGroupQuizFragment
Hi guys, do you have the proguard settings so that the stack trace can be rebuilt even if it has been obfuscated? ``` 07-03 16:21:22.405 29775-29775/? E/AndroidRuntime﹕ FATAL EXCEPTION: main...
I am having an issue successfully building a project using gradle retrolambda when using the shadow plugin. Here is the build output with --stacktrace and --info enabled. http://pastebin.com/YwbPZxzR
This is my current configuration: Module's build.gradle: ``` apply plugin: 'retrolambda' retrolambda { jdk System.getenv("JAVA8_HOME") oldJdk System.getenv("JAVA6_HOME") javaVersion JavaVersion.VERSION_1_6 } ``` System env ``` dhcp-159-104-130-193:~ me$ echo $JAVA_HOME /Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home dhcp-159-104-130-193:~...