Error creating AIR file: MyApp-app.xml error 306: Descriptor must support one of the following profiles: desktop, mobileDevice, extendedMobileDevice, tv.
Cause
The app descriptor file does not have the profile defined for the application you’re creating. In this case the cause is the app descriptor is set to extendedDesktop.
<supportedProfiles>extendedDesktop</supportedProfiles>
Solution
Open the app descriptor file and add the correct profile. For our case,
<supportedProfiles>extendedDesktop desktop</supportedProfiles>
although I have set the profile like this, it sure compiles a package but
extendedDesktop desktop
NativeProcess.isSupported returns false…
bugging bullshit arhhhh
Same thing for me… Compiles but returns false.
Found the solution.
You have to publish your application in native desktop installer.
To do it, i let you read this thread :
http://help.adobe.com/en_US/air/build/WS789ea67d3e73a8b22388411123785d839c-8000.html