Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can we upload apk with different signed keystore after deactivate current apk in android

I want to upload apk with different signed keystore after deactivate current apk. Actually company lost old one keystore that used for signed APK. So any another way for get old keystore or upload new apk as Same app Update.

like image 235
Parag Chauhan Avatar asked Jun 09 '13 17:06

Parag Chauhan


People also ask

Can multiple apps have same keystore?

So yes, you can use the same keystore to sign multiple apks, without a problem. You can also use the same alias (each alias is a certificate) to sign multiple apks, and it will work.

Can I upload unsigned APK to play store?

It is not possible to publish unsigned APK on Google Play. 5) Generate new signed APK using keyStore file provided by your developer 6) after generating new signed APK, you can update your existing google play application by new APK.

Does APK need to be signed?

All applications must be signed. The system will not install an application on an emulator or a device if it is not signed. To test and debug your application, the build tools sign your application with a special debug key that is created by the Android SDK build tools.

What is the difference between APK and signed APK?

Export Signed apk means you get the apk and it will provide the option to make the sign apk with existing keystore. Android requires that all apps be digitally signed with a certificate before they can be installed.


2 Answers

For this issue here is the answer from Google Play Team:

Hi x,

Thank you for your note. If you've lost your keystore you'll have to publish the app with a new package name and a new key. You should also update the description of the original app and unpublish it. Please note that users are allowed unlimited reinstalls of each application distributed via Google Play, an application will remain available to users that have already installed it even after it has been unpublished. Currently we do not support the deletion of apps or the re-use of package names. Unfortunately, there is nothing else we can do to assist you further with this matter.

Regards,

The Google Play Team

Here is Reference

like image 185
Md. Sajedul Karim Avatar answered Nov 14 '22 23:11

Md. Sajedul Karim


As blackbelt stated, if you signed it with a different keystore, it will be a new application. So you should tell your users that they have to download the new version of the app.

However you could check this tool which will try to recover your private key with the alias. I don't guarantee that you could retrieve it but you could give a try.

The tool recovers the key for your alias. By default this is the same like the keystore password. Now there is an option to save the key in a new keystore with the same password than the key! You can use this, to sign your apk and update your app in the Playstore.

Here's the link :

https://code.google.com/p/android-keystore-password-recover/

like image 43
Alexis C. Avatar answered Nov 15 '22 00:11

Alexis C.