tags:

views:

155

answers:

1

Hi,

i have created the private signed keystore file using eclipse and i have released the apk files in android market website. after some days we got some issues from users and we have fixed the issues but i don't have private signed keystore file. while making the apk file i need to use previous version release used private signed keystore file

Is there way to get private signed keystore file from previous apk release file?

Regards, Jeyavel N

+5  A: 

No.

You sign your APK using your private key, at which point your APK then contains your public certificate. The private key cannot be obtained from this file, otherwise anybody would be able to extract the key and sign apps under your name.

This is the reason the Android dev guide heavily recommends you keep your private key safe.

Christopher
Thank you Christopher....
Jeyavel