gradle-retrolambda
gradle-retrolambda copied to clipboard
Does retrolambda support for an android project depends on java project compiling to Java8?
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 byte code. This is caused by library dependencies that have been compiled using Java 8 or above
should be able to add Retrolambda to the Java 8 project config to make it work I don't believe it will compile with a pre-compiled Java 8 library dependency
Then there's no way to use a pre=compiled java 8 library, right?
perhaps you can decompile it so it can be recompiled with retrolambda? but if it is dependent on Java 8 libraries (streams, etc) that won't help
I see. Thank you.