Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Market - Error While Uploading APK file

Just now I have developed an application and now I am ready to upload it to Android market, but when I am trying to upload, it shows the following error message:

Market does not accept apk signed with the debug certificate. Create a new certificate that is valid for atleast 50 years. Market requires that the certificated used to sign the apk be Valid until at least October 22, 2033. Create a new Certificate.

Now how do I fix this problem, so that I can upload the APK file to Android market successfully?

like image 476
Paresh Mayani Avatar asked Oct 04 '10 05:10

Paresh Mayani


1 Answers

While developing and testing, you can compile in debug mode(debug certificate).

When your application is ready for release, you must compile in release mode and then sign the .apk with your private key.

The following link gives will help you

http://developer.android.com/guide/publishing/app-signing.html

like image 90
Umesh Avatar answered Sep 27 '22 18:09

Umesh