Reading that, I know how to programmatically get the app version, as written in codename1.version parameter.
Usually, for the version number I use the multiple-points notation number.number.number (e.g.: 1.0.1). But when I put the version in that notation, the Send iOS Debug build returns the following error:
Can't assign value '1.0.1' to attribute version, reason: class java.lang.NumberFormatException with message 'multiple points'
So, the codename1.version parameter is casted as number (float?). Why?
How can I set the multiple-points notation for codename1.version? Is it possible?