Lazy
Lazy

Reputation: 277

ADT: Packaging failed. Make sure your computer time is in sync and your certificate is valid

I use ant to build flex application and sign it with self generated certificate, it works fine for a long time with "Flex 4.6 & AIR 3.5" Today I've tried the latest SDK "Flex 4.10 & AIR 3.9" but my build script doesn't work on OSX because of some problems with certificate:

[INFO] [org.gradle.api.internal.project.ant.AntLoggingAdapter] [ant:java] Packaging failed. Make sure your computer time is in sync and your certificate is valid

In the same time it works with latest SDK on Windows. I've tried to generate new certificate or use another OSX but result still the same.

Upvotes: 1

Views: 880

Answers (2)

mdikici
mdikici

Reputation: 440

I received the same problem when I had 450MB video files included the project. The problem was the file size was too big. I left the video files out of the project and could successfully publish it. Then I put the video files into the project folders manually.

Upvotes: 2

John Watson
John Watson

Reputation: 106

Apparently, this is a known issue with the AIR SDK. I don't know why or how it suddenly stopped working for people, but the fix is to remove the section from air app descriptor .xml file.

See this link for more info, and perhaps a heads-up when Adobe fix the problem for real.

http://forums.adobe.com/thread/1317862#5771096

Upvotes: 1

Related Questions