Why is my Adobe AIR application reporting that the latest update is corrupted?

I wrote an HTML / AJAX application with Adobe Air and run it on my WinXP laptop. But now I have released a newer version on my update site, the application downloads this update and says, "The application cannot be installed because the AIR file is corrupted. Try to get a new AIR file from the author of the application."

I tried to repackage the app and increase the version number but it didn't help. I am building it in Aptana Studio on OSX.

Can someone explain what might be causing this error?

+1


a source to share


2 answers


I haven't worked with aptana, but ...

in adobe flex builder, you must change the first line of the file: "applicationName-app.xml". (where applicationName is the name of your application or project)

When changing from pc to mac-osx, you must change the line:

<application xmlns="http://ns.adobe.com/air/application/1.1">

      



to

<application xmlns="http://ns.adobe.com/air/application/1.5">

      

Don't know if you have this file when you create your project in aptana ... maybe in the project properties.

Then repackaging and deployment.

0


a source


I faced the same problem. After trying every "solution" mentioned in every blog on the planet, it occurred to me that my server didn't have .air as a recognized MIME type. Once I added this, everything was fine.



0


a source







All Articles