Package conflict while publishing similar apps

后端 未结 3 970
栀梦
栀梦 2021-01-16 19:04

I need to publish two applications in android market which are similar in functionality and uses similar code base. The only places where these apps differ is client specifi

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-16 19:20

    The app is identified by the package name. Therefor the package name needs to be unique. Thats why everybody uses some domain names for that to create a unique package (domains are unique, too).

    My packages looks like:

    org.shufflecity.android;
    org.shufflecity.server;
    

    You can also add a subpackage for each client you have:

    org.shufflecity.clientname.android
    

    That should do the trick...

提交回复
热议问题