Hi
Is any way to wrap an android studio lib that syntaxed with java 8 to b4a lib?
If it's impossible, say when java 8 syntax will be added to b4a?
Thanx
Some of the new Android libraries use Java 8 features. Android doesn't natively support those features so they must be removed (desugared) at some point. When you wrap a library that includes such features you need to desugar the wrapped library. This is done with an Android tool named desugar...