views:

574

answers:

1

Hi

I have tried the options given on Adobe Livedocs : adt -package -target native myApp.exe myApp.air, but I keep getting the message "-storetype required". I then try with adt -package -target native -storetype pkcs12 -keystore myCert.pfx myApp.exe myApp.air and get the same message.

I have already created the .air file and the .p12 cert file in flexbuilder, and am just pointing to these in the command prompt in the specified places, but the same problem occurs. Any ideas?

+2  A: 

Ok, figured this out.

  • Had to insert <supportedProfiles>extendedDesktop desktop</supportedProfiles> into my app.xml file.
  • and also <application xmlns="http://ns.adobe.com/air/application/2.0beta2"&gt; into the same xml file.

At lease Adobe Air 2.0 is needed, and ADT needs to be set in the Path. I put a list of the steps I took in getting the Air to Exe on my blog if you interested.

UPDATE: Serje Jespers created a drag-n-drop tool to accomplish this task here

Brian Bishop