Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to Android. I am trying to send message (GCM) from my server (Java) to android phone. On debugging the server code, I found that the messages are successfully sent to android phones. But I was not able to receive any messages in phone. I tried to have a break-point in onMessage(), but there was no use.

Once after the every message from server, my phone is only getting an alert box something like: "PROJECT is not responding. Would you like to close it?" It has 2 buttons in the alert box: wait and OK.

Can anyone please help me on this. Even though, my server sent messages successfully, Why I was not receiving any messages in phone. My client and server code are as follows:

Server:

public void sendPushNotification(String theRegistrationId, String thePushMsg)
    {
        //Used to transmit messages to the Google Cloud Messaging service.
        Sender aGcmSender = new Sender(API_KEY); 

        //Constructing message which need to be transmitted to android device.      
        Message aMessage = new Message.Builder().addData("message", thePushMsg).build(); 
        try 
        {
            Result result = aGcmSender.send(aMessage, theRegistrationId, 1); 
        }
        catch (Exception theException) 
        {

        }
    }

Client: AndroidManifest.xml:

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="15" />

<permission android:name="com.test.app.permission.C2D_MESSAGE" android:protectionLevel="signature" />
<uses-permission android:name="com.test.app.permission.C2D_MESSAGE" />

<uses-permission android:name="android.permission.INTERNET" />

<!-- App receives GCM messages. -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<!-- GCM requires a Google account. -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
<uses-permission android:name="android.permission.READ_OWNER_DATA" />
<!-- Keeps the processor from sleeping when a message is received. -->
<uses-permission android:name="android.permission.WAKE_LOCK" />
<!-- Permission to vibrate -->
<uses-permission android:name="android.permission.VIBRATE" />

<uses-permission android:name="android.permission.SET_DEBUG_APP"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />

<application
    android:icon="@drawable/icon"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"
    android:name="MyApplication">
    <uses-library android:name="com.google.android.maps" />

    <activity
        android:name=".view.welcome.WelcomeView"
        android:screenOrientation="portrait" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <receiver android:name="com.google.android.gcm.GCMBroadcastReceiver" 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.test.app" />
      </intent-filter>
    </receiver>

    <service android:name="com.test.app.GCMIntentService" />

</application>

GCMIntentService:

package com.test.app;

import android.content.Context;
import android.content.Intent;
import android.util.Log;

import com.google.android.gcm.GCMBaseIntentService;

public class GCMIntentService extends GCMBaseIntentService
{
    private static final String TAG = "===GCMIntentService===";
    private static String GCM_SENDER_ID = "697532398835"; //Project id in Google API Console

    public GCMIntentService() 
    {
        super(GCM_SENDER_ID);
        Log.d(TAG, "GCMIntentService init");
    }

    @Override
    protected void onRegistered(Context theContext, String theRegistrationId) 
    {
        Log.i(TAG, "Device registered: regId = " + theRegistrationId);
    }

    @Override
    protected void onUnregistered(Context theContext, String theArg) 
    {
        Log.i(TAG, "unregistered = "+theArg);
    }

    @Override
    protected void onMessage(Context theContext, Intent theIntent) 
    {
        Log.i(TAG, "new message= ");

        String aMessage = theIntent.getStringExtra("message");
        sendGCMIntent(theContext, aMessage);
    }

    private void sendGCMIntent(Context theContext, String theMessage) 
    {
        Intent aBroadcastIntent = new Intent();
        aBroadcastIntent.setAction("GCM_RECEIVED_ACTION");
        aBroadcastIntent.putExtra("gcm", theMessage);
        theContext.sendBroadcast(aBroadcastIntent);
    }

    @Override
    protected void onError(Context theContext, String theErrorId) 
    {
        Log.i(TAG, "Received error: " + theErrorId);
    }

    @Override
    protected boolean onRecoverableError(Context theContext, String theErrorId) 
    {
        return super.onRecoverableError(theContext, theErrorId);
    }
}

My activity:

package com.test.app.view.welcome;

import java.net.MalformedURLException;
import java.net.URL;

import com.google.android.gcm.GCMRegistrar;

public class LoginView extends Activity implements Runnable {

    Typeface itsTypeFace;
    IntentFilter gcmFilter;
    String broadcastMessage = "No broadcast message";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.login);

        gcmFilter = new IntentFilter();
        gcmFilter.addAction("GCM_RECEIVED_ACTION");         

    }

    private BroadcastReceiver gcmReceiver = new BroadcastReceiver() 
    {
        @Override
        public void onReceive(Context context, Intent intent) 
        {
            broadcastMessage = intent.getExtras().getString("gcm");
            if (broadcastMessage != null) 
            {
                System.out.println(broadcastMessage);
            }
        }
    };

    /**
     * Method to avoid back key press for a higher api level 2.0 and above
     */
    @Override
    public void onBackPressed() {}

    /** If the user changes the orientation of his phone, the current activity
        is destroyed, and then re-created.  This means that our broadcast message
        will get wiped out during re-orientation.
        So, we save the broad cast message during an onSaveInstanceState()
        event, which is called prior to the destruction of the activity.
    */
    @Override
    public void onSaveInstanceState(Bundle savedInstanceState) 
    {
        super.onSaveInstanceState(savedInstanceState);
        savedInstanceState.putString("BroadcastMessage", broadcastMessage);

    }

    /** When an activity is re-created, the os generates an onRestoreInstanceState()
        event, passing it a bundle that contains any values that you may have put
        in during onSaveInstanceState()
        We can use this mechanism to re-display our last broadcast message.
    */
    @Override
    public void onRestoreInstanceState(Bundle savedInstanceState) 
    {
        super.onRestoreInstanceState(savedInstanceState);
        broadcastMessage = savedInstanceState.getString("BroadcastMessage");
    }

    /** If our activity is paused, it is important to UN-register any
        broadcast receivers.
    */
    @Override
    protected void onPause() 
    {
        unregisterReceiver(gcmReceiver);
        super.onPause();
    }

    /** When an activity is resumed, be sure to register any
        broadcast receivers with the appropriate intent
    */
    @Override
    protected void onResume() 
    {
        super.onResume();
        registerReceiver(gcmReceiver, gcmFilter);
    }

    /** 
     * The call to GCMRegistrar.onDestroy()
     */
    @Override
    public void onDestroy() 
    {
        GCMRegistrar.onDestroy(this);
        super.onDestroy();
    }
}

Can anyone please help me on this issue. Even though, my server sent messages successfully, Why I was not receiving any messages in phone.

share|improve this question
How do you know that the message was sent successfully from the GCMserver? Did you examine the response from the GCM server? – NickT Nov 21 '12 at 12:32
Thanks for the response.. On debugging the server code in: Result result = aGcmSender.send(aMessage, theCubsDeviceToken, 1); after the message sent, I got the value of 'errorCode' as 'null' and I got a value for 'messageId'. So I thought that the message was sent successfully from the GCMserver. Please correct me if I am wrong. Thanks again – Kamal Nov 21 '12 at 12:50
And also..Once after the every message from server, my phone is getting an alert box something like: "PROJECT is not responding. Would you like to close it?" It has 2 buttons in the alert box: wait and OK. So I thought so. – Kamal Nov 21 '12 at 12:53
Result value: [ messageId=0:1353502614892971%0d20ed63f9fd7ecd canonicalRegistrationId=APA91bGI4Xnf7Y3yHY_2i3iq94CbYcC89qssNPqinAl3lgEHgMOr_MpX‌​mVZ97E_-NAv8zTszpjhCkaLVHk59QIK6J3ZKeK8aRJj5gTeFkD4AfaH8KFnmEO97LGBzYjIiEaCwrtHZ8‌​ldFtOpfUqYcNON_26cTEadt5Q ] – Kamal Nov 21 '12 at 12:56
1  
It seems you have managed to get a 'canonicalid' response. (Have a look on the developer.android.com/guide/google/gcm/adv.html#canonical page for full info) - Basically you need to change the regId that you are sending to be the value in the canonicalId field in your response. – NickT Nov 21 '12 at 13:21

1 Answer

up vote 0 down vote accepted

I found a solution for this problem. On deploying my application (server side), I found there was some problem with json-simple.jar.

I have upgraded the jar to json-simple-1.1.1.jar and it worked!

And also as NickT suggested, I have updated my canonicalid as follows:

Sender aGcmSender = new Sender(API_KEY);     
//Constructing message which need to be transmitted to android device.      
Message aMessage = new Message.Builder().addData("message", thePushMsg).build(); 

Result result = aGcmSender.send(aMessage, REG_ID, 1); //Transmitting message to android device
if(result != null)
{
    if(result.getMessageId() != null)
    {
        String aCanonicalRegistrationId = result.getCanonicalRegistrationId();
        if(aCanonicalRegistrationId != null)
        {
            //Updated my database with aCanonicalRegistrationId (replaced REG_ID)
        }
    }
    else 
    {  
        String error = result.getErrorCodeName();
        if (error.equals(Constants.ERROR_NOT_REGISTERED)) {    
            // application has been removed from device - unregister database
        }
    }
   }
}

Thank You.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.