Android - Can Publish different Apps with same keystore file in multiple Accounts? [duplicate]

北城以北 提交于 2019-12-03 12:22:10

Key Store has a collection of digital certificates, which are unique to a publisher, like your signature. They are used to verify that Apps come from a genuine source.

Package name + signature combo must be unique, i.e. one App can't have multiple official publishers:

  1. Device won't update same App package with different signature.
  2. Play store won't let you update same package file with different signature.

but a publisher can publish multiple apps:

  1. Device can have many Apps with different package names but same signature.
  2. Play Store can host many apps with different package but same signature.

Apart from that, each Play Store Account is given a unique Licence key, unlike signature, its bound to the Account. You can't use one Account's Licence Key for an app published from other account.

As far as Google policy is concerned, I don't think they limit 1 signature per developer account as of now.

You can use the same keystore in as many apps as you like, across as many accounts as you want, as long as all your apps have a unique package name.

Yes using same keystore you can publish app in different Developer Account.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!