Adobe Export Release Build 不起作用 - Mac OSX - Flex Builder 3
我有一个 AIR 应用程序,正在尝试使用 flexbuilder 发布。
启动应用程序没有问题... bin-debug 目录正确填充了我的文件。
但是,当我想创建 AIR 文件(导出发布文件)时,AIR 文件内容视图为空,并且 bin-debug 目录从未被填充...
知道吗?
谢谢,
雅尼克·格伦辛格
I have an AIR application i'm trying to release with flexbuilder.
Launching application has no problem ... bin-debug dir is correctly filled with my files.
But when i want to create the AIR file (export release fuild), AIR files content view is empty and bin-debug directory is never filled ...
Any idea ?
Thanks,
Yannick Grenzinger
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我最近在导出发布版本中遇到了同样的问题。我在 Air 应用程序 xml 中添加了图标路径,如下所示 -
这导致了问题。评论以上几行,它的工作没有任何问题。希望这有帮助。
I faced the same issue recently with the Export Release Build. I added the icon paths in the air app xml as below -
This caused the issue. Commented the above lines and it worked without any issues. Hope this helps.
我也有同样的问题。应用程序的 XML 配置文件似乎有问题。创建一个新的 MXML 应用程序(名称明显不同)。复制并粘贴其他应用程序中的代码。砰,它又起作用了!希望这对您的问题有所帮助。
I had the same problem. Seemed to be a problem with the XML config file for the application. Create a new MXML application, (something named different clearly). Copy and paste the code from the other app over. Bam, it works again! Hope this helps your problem.
当您导出发布版本时;您可以选择指定目录。我相信默认情况下它被命名为“bin-release”,至少对于 Flex 项目来说是这样。您确定指定了正确的目录吗?
AIR 项目导出的输出将是一个 .AIR 文件,您需要将其安装在计算机上才能运行。你做到了吗?
如果您的项目有多个应用程序文件,请确保导出正确的文件。
当您提到“AIR 文件内容视图”时,我不清楚您的意思。
When you export a release build; you are given the option to specify a directory. I believe this is named "bin-release" by default, a least for Flex projects. Are you sure you specified this correct directory?
The output of an AIR project export will be a .AIR ile which you need to install on your machine to run. Have you done that?
If your project has multiple application files, make sure you are exporting the proper one.
I'm unclear what you mean when you refer to the "AIR Files Content View."
嗯,我刚刚遇到了同样的问题!
这是我发现的(尽管我还没有找到一个很好的解决方案)。导出发布版本时,Flex Builder 会生成一个名为“bin_release”的目录,其中转储要包含在包中的所有文件。要解决我的问题,到目前为止,我所要做的就是将所有丢失的文件复制到此目录中,然后在导出发布向导中单击“完成”。
不是最终的解决方案,但它是一个快速解决方案!
Well, I just got the same issue!
Here's what I found out (even though I have not found a great solution for this yet). While exporting the release build, Flex Builder generates a directory named "bin_release" where all files to be included in the package are dumped. To fix my issue, so far all I have to do is to copy all the missing files into this directory before I click "finish" in the Export Release wizard.
Not a final solution but its a quick work around!