直到今天,我一直在发布我的应用程序(桌面、Android 和 iOS)。没有任何明显的原因,我不断收到相同的错误消息:
Error occurred while packaging the application:
Warning: Invalid format specified <versionLabel> tag . Ignoring its value.
我可以发布桌面和 Android 软件包,但不能发布 iOS!
从逻辑上讲,错误信息是错误的。
我正在使用 Windows 10 和 Flash Builder 4.7。
请帮忙!
Best Answer-推荐答案 strong>
我不为 iOS 打包,而是通过对您的问题的快速研究...
(1)
如果您将版本号设置为 1.2.3.4.5 等,那么它实际上必须是 only 为:1.2.3
From AIR 18 SDK onwards,
- the value of versionLabel is mapped to
CFBundleShortVersionString
- the value of versionNumber is mapped to
CFBundleVersion .
请参阅 Apple 文档:CFBundleShortVersionString 还有CFBundleVersion
注意“发布版本号是一个由三个句点分隔的整数组成的字符串”和警告“此key的值与的值不同CFBundleVersion "
(2) 尝试更新到最新的 AIR SDK(有时这些问题已经在新版本中得到修复)。
关于ios - Flash Builder iOS 导出发布错误 Invalid format versionLabel,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/42916255/
|