Reputation: 1619
Recently my computer crashed and I was only able to recover the keystore and apk of one of my Android apps (already published). Would it be possible to make an update to this app by creating a new project (the original one was lost) and using the original keystore? If so, how? Otherwise, how would I be able to update the app without the original project?
Upvotes: 1
Views: 221
Reputation: 915
1.Create new project with same package name 2.Write your code from scratch 3.Update correct version code 4.Generate Release APK with your key store and remember to write its password when asked. 5.You are good to update on play store.
Upvotes: 2
Reputation: 75635
As long as application Id and certificate used to sing release APK matches already released binary, you can publish whatever you want.
BTW: Keystore
is container for your keys
. So if you just recovered keystore
it does not automatically mean you recovered your keys
(as you might have forgot key password).
Upvotes: 0