The current issue we are having is that we want to track build revision when we post to Testflight, etc. The format on IOS would ideally be something like 1.0.1 (59) or 1.0.1.59 to indicate that this is rev59 of version 1.0.1.
This is calculated by services like TestFlight or Hockeynet as "CFBundleShortVersionString (CFBundleVersion)" for display.
The issue we are having is that no matter what we set the <versionLabel> key to in the app.xml the adt packager is *always* using the <versionNumber> key to set both the CFBundleVersion and CFBundleShortVersionString in the generated Info.plist on iOS.
The Air docs say that these are both reserved keys in the info.plist.
Is there any way to set those values independently or is this a bug in ADT?
There is another thread on the Flex forums with the same issue:
http://forums.adobe.com/message/4560647
Anyone?