Possible Duplicate:
Google GCMIntentService instantiate
I tried to work with GoogleCloud
for android. I followed the tutorial, and it works fine. But when I try to put GCMIntentService.java
class in some package(not root) it simply can't find it(no errors, just can't get RegID).
in Manifest file I have specified it:
<service android:name=".service.GCMIntentService" />
Rest everything is unchanged.
Thanks.