I implement GCM for my application. So I tried GCM sample code and made it work. But when I tried to inject the client side code in my app, I was suprised that I must put the GCMIntentService class in the main package otherwise it doesn’t work (of course I changed the manifest file by adding <service android:name=".gcm.GCMIntentService" /> “my_main_package.gcm” is my new package where I put the service.
For information, it works well when I put the service in the main package.
Has anybody an idea?
Here is the solution to put GCMIntentService in user defined package.