Copy link to clipboard
Copied
Love the progress with AIR 28, kudos to the AIR team!
All is well using the simulator and packing for Android - however, using FB and packaging for iOS Development, Ad Hoc or Production - I'm seeing the following error:
unexpected failure: multiple points
java.lang.NumberFormatException: multiple points
at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:1914)
at sun.misc.FloatingDecimal.parseFloat(FloatingDecimal.java:122)
at java.lang.Float.parseFloat(Float.java:451)
at com.adobe.air.ipa.IPAOutputStream.addInfoPlist(IPAOutputStream.java:1065)
at com.adobe.air.ipa.IPAOutputStream.addApplicationDescriptor(IPAOutputStream.java:216)
at com.adobe.air.ApplicationPackager.addSpecialFiles(ApplicationPackager.java:509)
at com.adobe.air.ApplicationPackager.createPackage(ApplicationPackager.java:87)
at com.adobe.air.ipa.IPAPackager.createPackage(IPAPackager.java:297)
at com.adobe.air.ADT.parseArgsAndGo(ADT.java:673)
at com.adobe.air.ADT.run(ADT.java:471)
at com.adobe.air.ADT.main(ADT.java:521)
This may be to do with necessary pList info keys or APP icons mentioned in the AIR 28 release notes - so working through that now and will post back if I resolve this - otherwise any help much appreciated.
Ok, I had this in my -app.xml
<key>MinimumOSVersion</key>
<string>10.3.3</string>
Removing this key - the error went away
Copy link to clipboard
Copied
Ok, I had this in my -app.xml
<key>MinimumOSVersion</key>
<string>10.3.3</string>
Removing this key - the error went away
Copy link to clipboard
Copied
We had the same error but needed the MinimumOSVersion.
Figured out that the THREE digit OS version was the issue!
When we used 9.0 instead of 9.0.0, it worked.
- Vinod