I have used clock.formatDateTime blocks to generate current Date and Time variables in an APP.
Those components have stopped working for me.
I cannot attach the clock1.systemtime block to the instant block of the clock1.FormatDateTime block anymore.
This was actually a bug in the blocks editor previously. It allowed for connecting these two blocks because the type of the SystemTime method was wrong in the blocks. In reality, this block returns a long, which is not an Instant (java.util.Calendar on Android or NSDate on iOS), but was typed for the latter. The right thing to do is pass this through MakeInstantFromMillis to convert the system time into an Instant object for use in FormatDateTime.
"Clock1.Now" is working for me, but maybe that has the wrong definiton as well?
should I change it to clock1.FormatDateTime.instant=MakeInstantFromMillis(clock1.SytemTime)?