|
Post by infabmfy on Nov 12, 2018 8:23:39 GMT
I'm using android studio to build my rhomobile application was we need Java 8 support.
The build steps we follow are 1) rake build:android:all 2) then go to the android folder 3) gradlew assembleRelease gradle is configured to support Java 8
We have removed the rhoBuild task in the autogenerated build.gradle file.
Will this step cause unexpected problems or its ok.
Best Regards,
|
|
|
Post by Alex Epifanov on Nov 12, 2018 16:55:30 GMT
Android Studio is not officially supproted by RMS now. We have an undocumented way to work with it but it is not production ready yet. Java 8 features in runtime are also not yet supported since they require significant changes to Rhodes build system. Though you can use Java 8 for building purpose. So current recommendation is to use Java 7 features for runtime code ( if you use lambdas you can change them to Java interfaces etc ).
|
|