Package conflict while publishing similar apps

后端 未结 3 1005
栀梦
栀梦 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:31

    The package name HAS to be unique on the market. That said, you can still reuse the code you produce simply by making the common code an Android Library. Then each client subproject would have a different manifest specifying different package names.

    Don't forget to create that package and to specify absolute package names for your activities in the manifest.

提交回复
热议问题