Laurent
Laurent

Reputation: 1749

Two different project for one App in Play Store

I have a project deployed in the Google Play Store. I have a very HUGE refactoring to do so the best thing is to restart from a blank project.

I want to build the apk with this new project and deploy it in the play store in place of the apk created with my first project since it will be exactly the same app. How can I be sure there will be no problems when i'll deploy the apk compiled in my new project ? i first think it has to be the same package name and applicationid, what else ?

Upvotes: 0

Views: 352

Answers (1)

jorjSB
jorjSB

Reputation: 610

  • same package name (same applicationId);
  • versionCode > current one in App Store;
  • signed with the same Key;

After that you can publish the app as an update for the current app.

Upvotes: 2

Related Questions