Its unclear to me from the documentation where Google recommend one should do the registering to GCM. The alternatives I see is doing the registration in the entry Activity defined in the Android Manifest or the Application context. Any input is welcomed
http://developer.android.com/guide/google/gcm/gcm.html#lifecycle
"Enabling GCM
This is the sequence of events that occurs when an Android application running on a mobile device registers to receive messages:
The first time the Android application needs to use the messaging service, it fires off a registration Intent to a GCM server.
This registration Intent (com.google.android.c2dm.intent.REGISTER) includes the sender ID, and the Android application ID.
Note: Because there is no lifecycle method that is called when the application is run for the first time, the registration intent should be sent on onCreate(), but only if the application is not registered yet."