Java – Android – can you publish different applications with the same keystore file in multiple accounts?
There is already an answer to this question: > can I use the same keystore file to sign two different applications? six
Solution
The key store has a collection of digital certificates, which is unique to publishers, like your signature They are used to verify that the application comes from a real source
The package name combination must be unique, that is, an app cannot have multiple official publishers:
>The device will not update the same app package with different signatures. > The play store will not let you update the same package file with different signatures
However, publishers can publish multiple applications:
>Devices can have many applications with different package names, but the same signature. > The play store can host many applications with different packages but the same signature
In addition, each play store account is given a unique license key. Unlike the signature, it is bound to the account For apps published from other accounts, you cannot use the license key of one account
As far as Google's policy is concerned, up to now, I don't think there is a limit of one signature per developer account