views:

163

answers:

1

I recently formatted my computer and updated to Windows 7. I backed up my keystore and tried to sign my apk with it but it gave me an error that said my certificate expires in 22yrs. which is just shy of what the market requires to upload the apk. So now I am stuck not being able to update my app...

How did this happen?

Is there a way to extend the lifetime of certificates so that I can update my app?

Is there a way to verify this certificate against an old apk that has been uploaded to the market so that I can be sure I am trying to sign with the same certificate and I didn't have a mix up?

Error Pic

A: 

Is there a way to verify this certificate against an old apk that has been uploaded to the market so that I can be sure I am trying to sign with the same certificate and I didn't have a mix up?

You might get enough info to confirm that via:

jarsigner -verify -verbose -certs my_application.apk

You might also try signing outside of Eclipse to see if that changes matters.

CommonsWare