Reputation: 21
I would like to make a slight change to my application's name. I read that it can work if both applications are signed with the same signature and is given the same userId then they can share information and I can migrate the original application's information to the new one. It is very important that the user gets the notification to upgrade. Will the user receive the update to upgrade if its done this way?
Upvotes: 2
Views: 180
Reputation: 52936
Do you mean the actual name (human readable) or the application package? You can change the name, description, etc. at any time (though it might be confusing for existing users). On the other hand, you cannot change the package name, you need to publish a new app. Unless the current app already has the sharedUserId
, set you cannot really use that option: setting it will change the UID and the application won't be able to see its own files. Two solutions to this:
Upvotes: 0
Reputation: 4147
Your users will still get the upgrade, as long as you don't change the top level java package name.
Upvotes: 2