How to create a native installer in AIR. i.e Installer should be .exe, .deb, .dmg instead of .air
I want to create a native installer for windows, mac and linux machines, 开发者_如何学JAVAInstead of .air file I want to create .exe , .dmg and .deb files respectively. So that i can enable the application to be installed natively.
adt -package -target native target.exe source.air
adt comes from AIR SDK. For windows, you also need to have java 1.5 or higher on path for adt to work (not installed by default).
Edit: Instruction above are for windows. Also, on each platform it is possible to make native installer for this platform only - no cross-packaging exist for now.
精彩评论