1
我們使用ant命令行腳本通過adt(flex 4.6 air 3.3)構建ios flex應用程序。 示例:Adobe的iOS打包程序在Linux上工作嗎?
<java jar="${FLEX_HOME}/lib/adt.jar" fork="true">
<arg value="-package"/>
<arg value="-target"/>
<arg value="ipa-ad-hoc"/>
...
腳本在Windows上正常工作。但在Linux上我得到:
[java] unexpected failure: Functionality not supported on : Linux
[java] java.lang.UnsupportedOperationException: Functionality not supported on : Linux
[java] at com.adobe.air.ipa.AOTCompiler.<init>(AOTCompiler.java:218)
[java] at com.adobe.air.ipa.IPAOutputStream.createIosBinary(IPAOutputStream.java
它應該在Linux上工作,或者我在腳本中犯了錯誤?
Stan