android-retrolambda-lombok icon indicating copy to clipboard operation
android-retrolambda-lombok copied to clipboard

A modified version of lombok ast that allows lint to run on java 8 sources without error.

Results 11 android-retrolambda-lombok issues
Sort by recently updated
recently updated
newest added

Small snippet that causes the error: ``` public class Test { private static class Foo { private final String a = ""; } private void fun() { List fooList =...

***Current dependencies:*** - Gradle: `classpath 'com.android.tools.build:gradle:2.2.3'` - Retrolambda: `classpath 'me.tatarka:gradle-retrolambda:3.6.1'` - Retrolambda Lombok: `classpath 'me.tatarka.retrolambda.projectlombok:lombok.ast:0.2.3.a2'` ***Logs of `./gradlew lint`*** ``` Unexpected failure during lint analysis of LauncherActivity.java (this is a...

Here's a minimum representative sample which illustrates the problem: Now this code is 100% contrived. One could imagine `doInBackground` using an `Executor` or hell, `AsyncTask`. But for the purposes of...

Regression test and fix for previously unsupported java language feature. I couldn't run the tests successfully with ant. Maybe I am missing something in the setup.

Using retrolambda 3.2.5 and lombok.ast 0.2.3.a2. I get an exception when running `./gradlew lint` whenever I have a class that uses an intersection cast: ``` Failed converting ECJ parse tree...

From https://github.com/evant/gradle-retrolambda/issues/140. Using: - `Android studio 1.4.1` - `Android gradle plugin 1.3.1` - `Gradle 2.8` I get an error from lint when I try to run `./gradle assemble` or `./gradlew...

buildscript { repositories { maven { url 'http://132.126.1.70:8888/nexus/content/groups/public' } //maven { url 'http://maven.oschina.net/content/groups/public/' } maven { url 'http://jcenter.bintray.com' } ``` mavenCentral() } dependencies { classpath "${rootProject.DEP_GRADLE_PLUGIN}" classpath 'me.tatarka.retrolambda.projectlombok:lombok.ast:0.2.3.a2' } configurations.classpath.exclude...

Hello, lovely tool! I am wondering if you know how I can run this with maven, and the android maven plugin, that has a built in lint goal Cheers, Sakis

Right now I'm using https://github.com/tnorbye/lombok.ast which I found from a pull request on the lombok ast project. Is there a better upstream somwhere of what changes google is making to...

I need to figure out signing with ant. Uhhhg ant!