通过 Intellij Idea 导出发布版本 - Flex
如何生成 Flex 应用程序的发布版本
通过 IntelliJ Idea,就像我在 Flex Builder 中所做的那样?
How do I generate release build of my Flex Application
through IntelliJ Idea, like I do in Flex Builder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
添加不带双引号的“-debug = false”。
唯一的问题是您需要为调试和发布构建保留单独的项目文件,但这没关系,因为发布构建很少完成。
add "-debug=false" without double quotes to it.
Only problem is you need to keep separate project files for debug and release build, but thats ok, as you release builds are done rarely.
替代答案:
创建一个 Java 模块,并向其中添加 2 个 Flex Facet,而不是创建 Flex 模块。一个方面将配置为调试方面,另一个方面配置为发布方面。此过程将创建 2 个 swf 文件,调试版本和发布版本。
注意:在 HTML 包装器中,您必须调用 debug.swf 或 release.swf。或者您可以创建 2 个包装器。
Alternate answer:
Instead of creating a Flex Module, create a Java Module, and add 2 Flex Facet's to it. One facet will be configured as the debug facet, the other as the release facet. This process will create 2 swf files, debug and release versions.
Note: In your HTML wrapper, you will have to call either debug.swf or release.swf. Or you could create 2 wrappers.
IntelliJ 支持 Ant 吗?也许不是您正在寻找的答案,但您可以使用 Flex Ant 任务在 FB 之外进行构建。
http://livedocs.adobe.com/flex/ 3/html/help.html?content=anttasks_1.html
Does IntelliJ support Ant? Maybe not the answer you're looking for, but you could use the Flex Ant Tasks to build outside of FB.
http://livedocs.adobe.com/flex/3/html/help.html?content=anttasks_1.html