Fcoder
Fcoder

Reputation: 9216

i lost my debug Keystore file

i was created an app and released without specific Keystore file. i use default debug keystore file... in fact after writing my code i just published it from bin folder... now i changed my laptop and my OS. i have the same code and same project in eclipse but when i change my code and Android Versioncode it seems eclipse creates another debug keystore and my app cant update. how i can recover the same debug Keystore file?

Upvotes: 0

Views: 824

Answers (1)

Daniel M.
Daniel M.

Reputation: 486

You published your app to Google Play store directly from /bin ?

Can you give us a link to your app ( just out of curiosity here ) .

But besides that , long story short you can't update your app since you've lost your keystore.

Keystores are unique and with that said they can't be reproduced ( anyone welcomed to say otherwise ).

The only option I see here is to unpublish your app , change your package name and republish it . But take into consideration you will loose your current users.

Please for the future when you build an app. use Android Tools -> Export Signed Application .

Also look into Proguard for obfuscation : http://developer.android.com/tools/help/proguard.html

Upvotes: 1

Related Questions