Reputation: 1436
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