Having hella issues just trying to find a way to to let Adobe know they have a support document that has a code typo on it.
T. Ravi Kumar is the author of this article.
Here is the link to the article
Adobe AIR applications installation issue
There is a code typo on this article - if you're copying and pasting the code into your terminal window it's NOT going to work. It took me quite awhile to figure out what was up.
<AIR_SDK_compiler_path>\bin\adt –package -storetype pkcs12 -keystore <app_signing_certficate_path> myApp.air application.xml .
The dash in front of 'package' should be -- (two dashes), not the — character which is an elongated dash that does not work in terminal as two dashes.
So use this code (and yes the . at the end of the line does matter)
<AIR_SDK_compiler_path>\bin\adt --package -storetype pkcs12 -keystore <app_signing_certficate_path> myApp.air application.xml .
and please please please Adobe please update this article to fix this typo.