Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Marketplace: Changing application's package

Any android developers had any success changing the package name of your application (in the manifest) of an application already being distributed in the Market?

During my upgrade progress, I decided to change the package name slightly, which means that android identifies it as a new application. So, I suppose saved preferences will be lost, but I'm really hoping there are no other "surprises" for upgrading users.

Cheers!

like image 587
Ralphleon Avatar asked Aug 30 '09 23:08

Ralphleon


1 Answers

It's not that the saved preferences will be lost, it's just that Android will set it as a completely new and seperate program which cannot access the old application's preferences.

However, if you sign your applications with the same signature and and give them the same userId then they can share information and you could migrate the original application's information to the new one.

like image 61
Will Avatar answered Oct 13 '22 01:10

Will