I have class that inheritance NotificationHandler
from azure in my project. Everything works fine before i update my project (without any changes in the receiver). Now, every time i install the application, the NotificationHandler
always triggered and send empty notification. I think my problem similiar with this question .
this is the source code
<receiver android:name="com.microsoft.windowsazure.notifications.NotificationsBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="_mypackage" />
</intent-filter>
</receiver>
Any help will be appreciated