views:

45

answers:

1

Just now i have developed an application and now i am ready to upload it on Android market, but when i am trying to upload, it showing the following error messages:

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 and able to upload the APK file on Android market successfully.

+4  A: 

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

Umesh
@Umesh i was knowing it but forgot to create new keystore and sign the application with new certificate, by the way, your answer made light in my mind , thanx for quick reply
PM - Paresh Mayani