Adobe AIR 3.0 - 使用 ADT 创建强制运行时 .APP 文件
有人可以告诉我如何创建使用 AIR3.0 强制运行时的 .APP 文件吗?
到目前为止,我有以下内容:
adt -package pkcs12 -keystore MyPersonalCertificate.p12 -target bundle pkcs12 -keystore CertFromAppleWebsite.p12 CellImaging.app Protocols_Large-app.xml ./xml Protocols_Large.swf ./Category_Icons ./AppIconsForPublish
Andrew Trice 在这里谈到了它: http://www.tricedesigns.com/2011/08/10/air-3-0-captive-runtime/
到目前为止,我得到以下内容 错误:
从描述符和文件集打包所需的签名选项
最终,我计划将其放入 Mac App Store,但首先我必须创建 .app 文件!
谢谢!
Can someone tell me how to create a .APP file that using the AIR3.0 captive runtime?
So far, I have the following:
adt -package pkcs12 -keystore MyPersonalCertificate.p12 -target bundle pkcs12 -keystore CertFromAppleWebsite.p12 CellImaging.app Protocols_Large-app.xml ./xml Protocols_Large.swf ./Category_Icons ./AppIconsForPublish
Andrew Trice touches on it here: http://www.tricedesigns.com/2011/08/10/air-3-0-captive-runtime/
So far, I get the following error:
Signing options required to package from descriptor and fileset
Ultimately, I plan to put this into the Mac App Store, but first I have to create the .app file!
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你忘记了“-storetype”:
不过要小心,排序很重要:
http://www.andymoore.ca/ 2013/06/adobe-air-error-on-exe-bundle-package/
You forgot "-storetype":
Be wary though, ordering is important:
http://www.andymoore.ca/2013/06/adobe-air-error-on-exe-bundle-package/
如果您没有找到问题的解决方案,我将按照以下步骤进行操作。
创建签名的发布构建(空气)文件,然后在终端中运行以下命令:
[sdk 的路径]/bin/adt -package -target bundle [选择保存捆绑应用程序的路径和文件名] [空中文件的路径]
In case you didn't find a solution to your problem, here's how I do it.
Create a signed release build (air) file and then run the following command in the terminal:
[path to the sdk]/bin/adt -package -target bundle [choose a path and filename where your bundled application is saved] [path to the air file]