打包AIR2.0的命令行语法

打包AIR2.0的命令行语法:
adt -package -storetype pkcs12 -keystore 自定义的证书文件.p12 -storepass 证书密码 -target native 发布的名称.exe TestCMD-app.xml TestCMD.swf

app.xml文件中:
配置以下节后,方可在flex中运行
<supportedProfiles>extendedDesktop</supportedProfiles>

而只有配置如下时,才可以发布为air,真变态
<supportedProfiles>desktop extendedDesktop</supportedProfiles>

发布为air后,再用adt命令打包为exe后安装,方可命名用native process的api功能。虽然发布的air也可以安装,但无法使用这些变态的api

你可能感兴趣的:(xml,Flex,AIR)