jzafrilla
jzafrilla

Reputation: 1436

Are GCM Registration Ids unique for multiple apps on the same device?

I have an application that receives notifications using GCM. I register a terminal:

GCMRegistrar.register(this, SENDER_ID);

To get Registration Id I call :

final String regId = GCMRegistrar.getRegistrationId(this);

If I use the same SENDER_ID and API_KEY for different apps, will the Registration ID be different for each app?

Upvotes: 3

Views: 595

Answers (1)

Eran
Eran

Reputation: 393771

Yes, the Registration Id will be different for each App.

Upvotes: 4

Related Questions