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.

Although I try other answer about this problem, it can't be solved. Sender ID is correct, permissions are added, API key is true.

I use this post for creating the project: http://developer.android.com/guide/google/gcm/gs.html#server-app

    GCMRegistrar.checkDevice(this);
    GCMRegistrar.checkManifest(this);
    String regId = GCMRegistrar.getRegistrationId(this);
    if (regId.equals("")) {
      GCMRegistrar.register(this, SENDER_ID);
      regId = GCMRegistrar.getRegistrationId(this);
    } else {
      Log.v(TAG, "Already registered");
    }
    String did = getDeviceID();

it returns empty string.

share|improve this question
Please give more detail on your problem. What returned empty string? What were the logcat output after GCMRegistrar.register is called? – azgolfer Jul 30 '12 at 3:45
thank you @azgolfer it is solved but now i can't send regid and device id to servlet, they seems null at servlet. Do you have any code about it. – user1451549 Jul 30 '12 at 11:56
I used first answer here: stackoverflow.com/questions/3505930/… I use extended AsyncTask. – user1451549 Jul 30 '12 at 12:04
@azgolfer logcat output 08-03 09:24:21.974: V/GCMRegistrar(14590): Registering receiver 08-03 09:24:21.974: D/GCMRegistrar(14590): resetting backoff for com.example.ilkgcm 08-03 09:24:21.984: V/GCMRegistrar(14590): Registering app com.example.ilkgcm of senders "my_sender_id" 08-03 09:24:36.248: A/libc(14590): Fatal signal 6 (SIGABRT) at 0x0000012f (code=0) – user1451549 Aug 3 '12 at 6:26
when GCMRegistrar.register is called, logcat output as above. Fatal signal appears in 10-15 seconds. – user1451549 Aug 3 '12 at 6:31
show 1 more comment

3 Answers

up vote 15 down vote accepted

Do you have GCMIntentService defined correctly at the root package of your app?

<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="my_app_package" />
  </intent-filter>
</receiver>

Make sure that "my_app_package" is identical to the main package of your app, or your id will return an empty string.

Also notice that

    GCMRegistrar.register(this, "...");

is asynchronous. Therefore, calling GCMRegistrar.getRegistrationId(this) immediately after that is not reliable, so you should avoid it.

The id will arrive via broadcast callback to your GCMIntentService, as a part of the registration procedure. from there you can than store the gcm key anywhere you like, and use it in other parts of the application (usually on the server).

share|improve this answer
how long do i need to wait? – user1451549 Aug 2 '12 at 12:04
for the callback? It's quite immediate. It's involving a communication with a system process, and the callback is coming from there. If you wait and it doesn't arrive it means something is wrong in your setup – uval Aug 2 '12 at 19:39

Registering app com.example.ilkgcm of senders "my_sender_id" -- This error suggests you haven't changed your 'my_sender_id' to a valid sender id which would be a 12-letter code.

share|improve this answer

If your application launches first time, you have to wait for OnRegistered callback on your GCMIntentService.java file.

GCMRegistrar.register(this, SENDER_ID);
// Android does NOT wait for registration ends and executes immediately line below
// So your regId will be empty.
regId = GCMRegistrar.getRegistrationId(this);

GCMIntentService.java:

@Override
protected void onRegistered(Context c, String regId) {
    // You can get it here!
}
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.