I am trying to use google's C2DM to receive a message from the server, I actually can register to the google server, they send me the registration code,and I also have my account with google and all that stuff, but I have followed the Vogella tutorial, read the google documentation and tried to use their code available in the Chrome to Phone and JumpNote and many more and I still can't get this working. So any help or opinion is welcome.
In my XML Manifest I have added this permissions:
<!-- Send the registration id to the server -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<!-- Only this application can receive the messages and registration result -->
<permission android:name="com.myPackage.test.permission.C2D_MESSAGE" android:protectionLevel="signature" />
<uses-permission android:name="com.myPackage.test.permission.C2D_MESSAGE" />
<!-- This app has permission to register and receive message -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
And this service and receiver inside the application tag:
<service android:name=".ReceiverC2DM" />
<receiver android:name=".ReceiverC2DM" android:permission="com.google.android.c2dm.permission.SEND">
<!-- Receive the actual message -->
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="com.myPackage.test" />
</intent-filter>
<!-- Receive the registration id -->
<intent-filter>
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.myPackage.test" />
</intent-filter>
</receiver>
I have removed code that I use for the registration because that is working good, the problem is receiving the message, this is my code from the receiver class:
public class ReceiverC2DM extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
System.out.println("onReceive");
if (intent.getAction().equals("com.google.android.c2dm.intent.REGISTRATION")) {
handleRegistration(context, intent);
} else if (intent.getAction().equals("com.google.android.c2dm.intent.RECEIVE")) {
handleMessage(context, intent);
}
}
private void handleMessage(Context context, Intent intent) {
System.out.println("Message received");
//Do whatever you want with the message
}
}