I have GCM completely working. My question is when I exit my app with the android BACK key I see the onDestroy() called and to avoid leaks I unregistered the receiver for gcm so it's onUnregister() is called. But I want to be able to register gcm once at power up (boot completed?) and then be able to get notifications any time. I know I will need to still handle when google may refresh the reg intent. But I'm not clear if I need to make a new service to register gcm in in its onCreate()? Right now I register gcm in the main activity's onCreate().
Thanks for any help!!
Justin