How to package AIR 2 native installer?
- by John Isaacks
I have made an AIR 2.0 app that uses NativeProcess so it needs to be packaged as a native installer (.exe) rather than a .air file.
I first tried using Package Assistant but I kept getting an error telling me it cannot load keystore file. so I tried using the command line
I use:
pathToAirSDK>adt -args
but I get an error telling me that "adt" is not a known command so I try:
pathToAirSDK>adt.jar -args
but I get a pop up telling me windows does not know how to open adt.jar files.
Has anyone packaged a native installer for an AIR 2.0 app? How did you do it?
edit
forgot to mention I am doing this in windows using the windows command line.