0

If I change all the names in the classes and the Manifest, but leave the original one in build.gradle, will this cause any problems when sending an update?

Another question asked if there was a way to change the part in the URL, but I know that's not possible. I mean changing what appears in the manifest and the classes.

Nebulont
  • 1
  • 2
  • 1
    Possible duplicate of [Is it possible to change the package name of an Android app on Google Play?](https://stackoverflow.com/questions/17582289/is-it-possible-to-change-the-package-name-of-an-android-app-on-google-play) – ADM May 13 '18 at 16:48

1 Answers1

3

No, Google Store cares about two things the first one is the module.gradle, it will check if the code version changed. google store detects update by the code version, should be higher than the current one otherwise it will reject your update.

the second thing which google cares about is it the key store, since google will not accept the update unless you use the same key store which you used at the first one

Basil Battikhi
  • 2,638
  • 1
  • 18
  • 34