gradle-retrolambda
gradle-retrolambda copied to clipboard
A gradle plugin for getting java lambda support in java 6, 7 and android
https://github.com/adwiv/android-fat-aar Error:Error converting bytecode to dex: Cause: Dex cannot parse version 52 byte code. This is caused by library dependencies that have been compiled using Java 8 or above. If...
Here's a test project: https://github.com/cypressious/KotlinRetrolambdaBug Run the app. The activity should display "bar". Now go to `com.cypressworks.kotlinretrolambdatest.Foo` and change "bar to "foo". Run the app again. You will see "bar"...
We are using Retrolambda in our app (which is really awesome and makes our code much cleaner) along with the jacoco plugin to gather the code coverage of our acceptance...
Probably I have found an issue when groovy and retrolambda plugins are combined together. I tested it on retrolambda 3.2.1 and 3.3.0-beta1 Here is my a part of my build.gradle:...
I have a local value `status` in my method that relies on type that will be inferred from the initializer expression (lombok's `val`): ``` private MyCallBack foo(final Bar bar) {...
Using lambda expressions with the Handler to post a Runnable inside an AjaxCallback produces a compile error. However, using the regular anonymous class works fine AND using the lambda expression...
Does retrolambda support for an android project depends on java project compiling to Java8? I get the error below. Error converting bytecode to dex: Cause: Dex cannot parse version 52...
Have a project with this to add retrolambda and Ben Manes' versions plugin (https://github.com/ben-manes/gradle-versions-plugin) plugins { id 'me.tatarka.retrolambda' version '3.6.0' apply false id 'com.github.ben-manes.versions' version '0.14.0' } The versions plugin...
Hi, i got this error: Error:Execution failed for task ':PrjSDK:transformClassesWithRetrolambdaForRelease'. > Process 'command 'D:\XXXX\XXXXX\XXXX\jre\bin\java.exe'' finished with non-zero exit value -1073740791 **build.gradle**: dependencies { classpath 'com.android.tools.build:gradle:2.2.3' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' classpath 'me.tatarka:gradle-retrolambda:3.5.0' }
Right now this is kinda a mess. The java plugin runs all test code through retrolambda and then forces unit tests with an older java version. The android plugin, however,...