onRegisterd() method from GCMIntentService not called.
In log it displays like: onReceive: com.google.android.c2dm.intent.REGISTRATION GCM IntentService class: com.example.dailysales.GCMIntentService Acquiring wakelock My AndroidManifest.XML File code is below:
<receiver
android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<!-- Receives the actual messages. -->
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<!-- Receives the registration id. -->
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.example.dailysales" />
</intent-filter>
</receiver>
<service android:name="com.example.dailysales.backgroundservice.InboxMessageLoadingService" >
</service>
<service
android:name=".GCMIntentService"
android:enabled="true" >
</service>