Adobe AIR 3.0 - 使用 ADT 创建强制运行时 .APP 文件

发布于 2024-12-11 04:36:58 字数 679 浏览 2 评论 0原文

有人可以告诉我如何创建使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

宛菡 2024-12-18 04:36:58

你忘记了“-storetype”:

adt -package -storetype pkcs12 -keystore MyPersonalCertificate.p12 -target bundle pkcs12 -keystore CertFromAppleWebsite.p12 CellImaging.app Protocols_Large-app.xml ./xml Protocols_Large.swf ./Category_Icons ./AppIconsForPublish

不过要小心,排序很重要:
http://www.andymoore.ca/ 2013/06/adobe-air-error-on-exe-bundle-package/

You forgot "-storetype":

adt -package -storetype pkcs12 -keystore MyPersonalCertificate.p12 -target bundle pkcs12 -keystore CertFromAppleWebsite.p12 CellImaging.app Protocols_Large-app.xml ./xml Protocols_Large.swf ./Category_Icons ./AppIconsForPublish

Be wary though, ordering is important:
http://www.andymoore.ca/2013/06/adobe-air-error-on-exe-bundle-package/

无声无音无过去 2024-12-18 04:36:58

如果您没有找到问题的解决方案,我将按照以下步骤进行操作。

创建签名的发布构建(空气)文件,然后在终端中运行以下命令:

[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]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文