Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Re-developing an app from scratch?

This is not a programming question but I feel SO is the right place to put it in.

There is an android app in the market. Our job is to upgrade the app in a huge way. There is so much to change to the point where we decided to start a new project from scratch.

My question is: in order to be able to replace (upgrade) the existing app in the Play store, What should we do? Keep the same package name? or the sign key is enough? or both? or what?

Thanks for your help and sorry if this is not the right place.

like image 847
iTurki Avatar asked Dec 26 '22 21:12

iTurki


2 Answers

You must have both the same package name and the same signature key. Also, if it has any sort of intents/actions that can be launched from other applications, you may want to keep those the same (in case a user has setup a shortcut to them).

Package name is how the Play Store determines one app from another. They have to be unique for each app. You can't change it after you've uploaded the original if you're wanting to upgrade the existing app.

The signing key is how the Play Store verifies that you are the original developer. If you ever lose or change this key you will absolutely not be able to update the original application!

like image 183
Bryan Denny Avatar answered Jan 08 '23 06:01

Bryan Denny


in order to be able to replace (upgrade) the existing app in the Play store, What should we do?

You need both "same package name and the same signing key"

Or if you want to change any of this, You always have option to unpublish your application from Play store.(From developer console you can unpublish it)

and then u can upload a new app.

like image 43
AAnkit Avatar answered Jan 08 '23 04:01

AAnkit