Android GCM: same sender ID for more applications

Can I use the same sender id for more applications? Now I have 18 applications (different languages ​​and some functions) that use the same backend. Now I am implementing push notifications with GCM. But the backend team prefers to have only one google project - SENDER ID for all applications. Has anyone tried it? Is this possible for this scenario? What are the disadvantages?

thank

+42
android google-cloud-messaging
Jul 19 2018-12-12T00:
source share
1 answer

Developers are fully encouraged (and encouraged) to use the same ID / API for all their applications.

When sending a message, you specify a registration identifier that is implicitly associated with the package name of the app + device where it was generated. Only the application that requested the registration identifier will receive your message.

Source: I am a member of the Android team at Google.

+101
Jul 20 '12 at 21:30
source share



All Articles