我正在使用现有的Flex项目,而我正在使用FlashBuilder。我想使用FlashBuilderC和fb.exportReleaseBuild ant任务来安排每晚构建。
我的原生扩展程序似乎有问题。
fb.exportReleaseBuild] com.adobe.air.InvalidInputException:一个实现f 或原生扩展' InputMethodContext'申请所要求的不是四 nd为目标平台
使用Flash Builder GUI,我可以成功构建和打包项目
这是我的build.xml
<?xml version="1.0"?>
<project default="main">
<target name="main">
<fb.exportReleaseBuild project="myproject" />
</target>
</project>
这是我使用的脚本
set WORKSPACE=path_to_my_workspace
REM works with either FlashBuilderC.exe or eclipsec.exe
"C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64 Bit)\FlashBuilderC.exe" ^
--launcher.suppressErrors ^
-noSplash ^
-configuration C:\flashbuilderconf ^
-application org.eclipse.ant.core.antRunner ^
-data "%WORKSPACE%" ^
-file "%cd%\build.xml"
我错过了什么吗?