我有一个正在编译到移动设备的 AIR 应用程序。有一个 iOS 原生扩展 ( JamPot MobileBackup ) 在 IDE 中使用时可以正常编译。
但是,由于我们正在转向支持其他平台,IDE 还不够,我决定构建一个 Ant 脚本来运行构建过程。
问题是这个特定的 ANE 似乎在扩展代码中定义 MobileBackup 类,而不是像我正在使用的其他 ANE 那样在单独的 .as 文件中定义。
这是我看到的错误:
[mxmlc] Loading configuration file /Users/anderson/src/flex/4.6.0/frameworks/airmobile-config.xml
[mxmlc] /Users/anderson/src/xxx/src/xxx/Utility.as(32): col: 35 Error: Type was not found or was not a compile-time constant: MobileBackup.
[mxmlc]
[mxmlc] private static var mobileBackup:MobileBackup = new MobileBackup();
[mxmlc] ^
[mxmlc]
[mxmlc] /Users/anderson/src/xxx/src/xxx/Utility.as(32): col: 54 Error: Call to a possibly undefined method MobileBackup.
[mxmlc]
[mxmlc] private static var mobileBackup:MobileBackup = new MobileBackup();
[mxmlc] ^
[mxmlc]
[mxmlc] /Users/anderson/src/xxx/src/xxx/Utility.as(32): col: 54 Error: Call to a possibly undefined method MobileBackup.
[mxmlc]
[mxmlc] private static var mobileBackup:MobileBackup = new MobileBackup();
[mxmlc] ^
[mxmlc]
[mxmlc] /Users/anderson/src/xxx/src/xxx/Utility.as(21): col: 35 Error: Definition ie.jampot.nativeExtensions:MobileBackup could not be found.
[mxmlc]
[mxmlc] import ie.jampot.nativeExtensions.MobileBackup;
mxmlc 调用如下所示:
<mxmlc
file="${app.main.class.file}"
output="${build.output.swf.file}"
locale="${LOCALE}"
static-rsls="false"
accessible="false"
configname="airmobile"
debug="${build.debug.mode}"
failonerror="true"
fork="true"
maxmemory="512m">
<source-path path-element="${app.src.path}"/>
<compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
<include name="libs/*" />
</compiler.library-path>
<library-path file="${FLEX_HOME}/frameworks/locale/${LOCALE}" append="true"/>
<library-path dir="${spicelib.lib.path}" includes="*.swc" append="true"/>
<library-path dir="${parsley.lib.path}" includes="*.swc" append="true"/>
<library-path dir="${app.lib.path}" includes="*.swc" append="true"/>
<external-library-path file="${AIR_GLOBAL}" append="true"/>
<external-library-path dir="${app.ane.path}" includes="*.ane" append="true"/>
<define name="CONFIG::DESKTOP" value="${output.config.environment.desktop}"/>
<define name="CONFIG::IOS" value="${output.config.environment.ios}"/>
<define name="CONFIG::ANDROID" value="${output.config.environment.android}"/>
<define name="CONFIG::PRODUCTION" value="${output.config.environment.production}"/>
<define name="CONFIG::STAGING" value="${output.config.environment.staging}"/>
<define name="CONFIG::LOCAL" value="${output.config.environment.local}"/>
</mxmlc>
其中 app.ane.path 是项目的 .ane 文件集合的路径。
我也尝试过使用库路径而不是外部库路径。
除了添加 build.xml 之外,我根本没有更改 Flash Builder 项目的布局或内容,它仍然可以在 IDE 中正常编译。
我需要做什么才能让它在 IDE 之外编译?