-
Notifications
You must be signed in to change notification settings - Fork 449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Execution failed for task ':blsAndroid:compileRetrolambdaDebug'. #31
Comments
So here's a stacktrace from the build:
When I remove all the lambdas from this particular class, the build finishes successfully. |
Looks like retrolambda is failing to process your particular lambda usage in this case. Could you post an example on what you are doing in that class? If this was working previously, you may be able to revert to an older version of retrolambda by doing dependencies {
retrolambdaConfig 'net.orfjackal.retrolambda:retrolambda:OLDER_VERSION'
} |
I've reduced the crash to a minimal example. You can find it here: https://gist.github.com/cypressious/5ccfe84a31fd836fe125 As it seems, any class that extends Google's |
Yeah you should do that, I can't think of anything gradle-plugin specific that would cause this. |
Ok, here's the issue in case anyone stumbles over this: luontola/retrolambda#25 |
So the issue was closed over there. Apparently Google's code is to blame. The suggestion is to add the JVM option |
A generic method for adding JVM options to gradle-retrolambda would be the best, because it might be dangerous to always use |
This solution would be perfectly fine with me. |
i have added -noverify but sttill error, help me please |
My builds fail with the following error:
Here's my build.gradle:
It used to work until some point, but I'm not sure what changed. When I go back to an older revision of my code, the same error appears. I tried cleaning the project with no luck, too.
The text was updated successfully, but these errors were encountered: