ikevin8me
ikevin8me

Reputation: 4313

Errors with Codename One "Send iOS Build" and "Send Android Build"

I had no problem with "Build Project"/"Rebuid Project" using IntelliJ IDEA for my Codename One project.

Today, I just started to "Send iOS Build" and "Send Android Build" and got a spew of errors.

For the one below, I cannot recognize why it failed, or where to find the "compiler error output" as described:

enter image description here

For this next one, I can recognize it is referring to the java.time package (Java 8):

enter image description here

I saw somewhere that I should include the "java.version=8" and I already did.

Please help me to get my iOS and Android builds. Thanks!

Upvotes: 1

Views: 98

Answers (1)

Diamond
Diamond

Reputation: 7483

From the StackTrace above, you are using some java API that Codename One doesn't support like the GregorianCalendar and LocalDateTime. You can read more about this here...why-we-dont-support-the-full-java-api

You can ask a separate question on what you're trying to achieve with those and maybe someone here could provide you with an alternative solution that will work.

Upvotes: 2

Related Questions