<receiver android:name="com.giderosmobile.android.plugins.notification.NotificationClass"></receiver>
<receiver android:name="com.giderosmobile.android.plugins.notification.NotificationRestore" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver android:name="com.giderosmobile.android.plugins.notification.GCMReceiver" android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.yourdomain.yourapp" />
</intent-filter>
</receiver>
<service android:name="com.giderosmobile.android.plugins.notification.GCMIntentService" />