1. 发布AIR程序
a)在FlexBuilder中,选中你要发布的工程,点击右键,选择“Export”
b)在名字为Flash Builder的文件夹中选择Release Build, 点击“Next”,
c)进入下一个页面,勾选“Export to AIR file”, 选择路径,然后点击“Next”
d) 进入下一个页面,勾选“Export and sign an AIR file with a digital certificate”, 可以选择已有的certificate文件或者创建新的,这里不详细描述
e)点击“finish”即可。
2.AIR程序日志信息
安装AIR时, 本地会有日志信息产生,不同操作系统上日志信息的位置不同,列举如下:
Mac:
/private/var/log/system.log (or the console app)
Win XP:
C:/Documents and Settings/<username>/Local Settings/Application Data/Adobe/AIR/logs/Install.log
Win Vista/7: C:/Users/<username>/AppData/Local/Adobe/AIR/logs/Install.log
Linux:
/home/<username>/.appdata/Adobe/AIR/Logs/Install.log
3.安装AIR
安装AIR时, 如果日志信息中有如下类似错误
The certificate of the installed app fails to match either the signature or migration signature of the AIR file,说明本地有相同名字的AIR应用程序已被安装,这种情况下需要去控制面板查看,有的话可以考虑卸载,然后再安装新的。
4. AIR相关
LCDS3.1中有一个特性叫做offline, 重点体现在AIR的应用程序中,在此记录了一个在开发过程中遇到的问题:
a) 在开发offline的相关应用时,会用到一个属性 encryptLocalCache , 如果第一次设置成 true , 并且生成了本地存储,那么本地存储是加密的。这个时候如果把它设置成 false , 再次运行应用程序,则会遇到类似如下的错误:
“ Could not initialize DataService.
SQLError: 'Error #3125: Unable to open the database file.', details:'Auto compact could not be turned on.', operation:'open', detailID:'1005' “
如果将此工程发布成AIR程序之后 ,并将其 运行 在另外的主机上,这时候如果去读的本地存储是加过密的(并且不是通过这个应用程序去加的密),则也会遇到类似的错误,所以在开发测试的环境下, 我们可以在运行应用程序之前将本地存储清空。并且这个问题应该是在开发测试时会出现的,记在这里,以便遇到类似问题时参考。