Skip to content Skip to sidebar Skip to footer

Google Play: "the Server Could Not Process Your Apk. Try Again."

I have been unable to upload a specific application to the Play store. I'm using Flash Builder 4.6 to package it. After the upload is complete I get the message 'The server could

Solution 1:

Update: After contacting Google Play Developer support I found out the issue....

My icon files were too big!

My icons were about 140k each, and as soon as I reduced them to 10k it worked perfect!

Solution 2:

If you use drawable file for the icon from android standard icons like @android:drawable/ic_dialog_alert. the parser failed to find the ic_dialog_alert file in the res/drawable directory and raise an error.

Solution 3:

Most likely, you have an error in your manifest xml file.

In your SDK platform tools you can find aapt

Run this aapt dump badging

Got the answer from this link

Solution 4:

I'm also using Flash Builder 4.6

I had successfully uploaded version 0.9.45. I then went up to 0.9.5 but kept getting the 'you must upload a version higher than 0945' error. I tried all sorts of things, including the suggestion of making icon sizes much smaller. Nothing worked.

Finally I decided just to change to 1.0.0 and then it was accepted by Google Play(!)

Post a Comment for "Google Play: "the Server Could Not Process Your Apk. Try Again.""