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 have followed http://developer.android.com/guide/google/gcm/gs.html#server-app to implement GCM in my application

                    GCMRegistrar.checkDevice(this);
        GCMRegistrar.checkManifest(this);
        if (GCMRegistrar.isRegistered(this)) {
            Log.d(TAG, GCMRegistrar.getRegistrationId(this));
        }
        final String regId = GCMRegistrar.getRegistrationId(this);

        if (regId.equals("")) {
            GCMRegistrar.register(this, sender_id);
            Log.d(TAG, "Registration id :  "+GCMRegistrar.getRegistrationId(this));
        }
            else {
            Log.d("info", "already registered as" + regId);
        }

that returns empty string as registration ID what else is needed to get the registration ID??

share|improve this question

7 Answers

Empty String comes when device is not registered successfully. There may be following reasons for it-

  1. Put you GCM code in application package. [You can make another package with same name of application package]
  2. Put all permissions properly.
share|improve this answer
thanks but this was done properly. – newBee Jan 27 at 5:55

I also got the empty registration ID and finally fix it. Here are my solutions:

1) check the project ID. It should be the 12 char long shown in the hyperlink of Google API's console (not the Project ID you named in the project summary)
2) try change the final String regId to String regId. I don't know why but it works for me.

Hope it helps.

share|improve this answer
Thanks Nick, but this wasnt problem in my case. – newBee Jan 27 at 5:57
Removing final from registration id variable solved the problem for me. Thanks! – Tuszy Apr 8 at 19:26
I misused project ID and server key. thanks for the 1st solution. – Youngjae May 18 at 8:06
    GCMRegistrar.checkDevice(this);
    GCMRegistrar.checkManifest(this);
    final String regId = GCMRegistrar.getRegistrationId(this);

    if (regId.equals("")) {
        GCMRegistrar.register(this, "YOUACCOUNT");
    } else {
        app.prefs.edit().putString("prefs_googleid", regId).commit();
        GCMRegistrar.setRegisteredOnServer(this, true);
        Log.v(TAG, "Already registered");
    }

then wait the call back in your receiver that extend GCMBaseIntentService in the onRegistered ovverride, there you will get your ID registration.

Anyway I full create an app that use GCM following this post: http://developer.android.com/guide/google/gcm/gs.html

share|improve this answer
Thanks Giuseppe, I have used the same link But my application doesnt get to onRegistered() method – newBee Jul 5 '12 at 10:15
did you implement the BrodcastReceiver ? – Giuseppe Jul 6 '12 at 16:05

I also got the empty string as a registration id and solved it as follow :

  1. Check whether senderId is correct or not.
  2. Check whether there is an active google account signed in your device or not.
  3. Check wheter permissions are correctly defined in manifest file or not.
share|improve this answer
thnks, but even this was done correctly – newBee Jan 27 at 5:56

I got the same issue, the solution was:

You need to implement a GCMIntentService (extending from GCMBaseIntentService). And DO NOT !!! rename GCMIntentService by something else, this was a reason in my case.

share|improve this answer
I had done that.. – newBee Jan 27 at 5:57
up vote 0 down vote accepted

Creating a new project using google console with the same name as application's name in eclipse helped me to solve this problem.

share|improve this answer

Make sure you defined the service in the "app_package" as this intent service will be called by the GCMBroadcastReceiver

For example

<service android:name=".GCMIntentService" />

or

<service android:name="app_package.GCMIntentService" />

Fail to define the service correctly, there will be no callback for onRegister, and your Register Id is always empty

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.