service-not-available

Android GCM SERVICE_NOT_AVAILABLE

天大地大妈咪最大 提交于 2019-12-03 16:32:36
问题 I was trying to set this example: https://code.google.com/p/gcm/source/browse/#git%2Fgcm-client up and running. The GoogleAPI project has been successfully created, according to the guide: http://developer.android.com/google/gcm/gs.html However, I have the following problem: on some devices I get SERVICE_NOT_AVAILABLE no matter what. W/System.err: java.io.IOException: SERVICE_NOT_AVAILABLE W/System.err: at com.google.android.gms.gcm.GoogleCloudMessaging.register(Unknown Source) Some

Google Cloud Messaging - GCM - SERVICE_NOT_AVAILABLE

只愿长相守 提交于 2019-12-03 08:27:42
问题 I am trying, to implement the new GCM, I am following Google get stated : http://developer.android.com/guide/google/gcm/gs.html I getting stuck at getting my device registration ID ! My app keep trying to connect with Google server, Here my error logs : onReceive: com.google.android.gcm.intent.RETRY GCM IntentService class: com.dombox.app.GCMIntentService Acquiring wakelock [GCMIntentService] start Registering app com.dombox.app of senders _my_sender_id_ Releasing wakelock onReceive: com

Google Cloud Messaging - GCM - SERVICE_NOT_AVAILABLE

我与影子孤独终老i 提交于 2019-12-02 22:11:07
I am trying, to implement the new GCM, I am following Google get stated : http://developer.android.com/guide/google/gcm/gs.html I getting stuck at getting my device registration ID ! My app keep trying to connect with Google server, Here my error logs : onReceive: com.google.android.gcm.intent.RETRY GCM IntentService class: com.dombox.app.GCMIntentService Acquiring wakelock [GCMIntentService] start Registering app com.dombox.app of senders _my_sender_id_ Releasing wakelock onReceive: com.google.android.c2dm.intent.REGISTRATION GCM IntentService class: com.dombox.app.GCMIntentService Acquiring

GCM SERVICE_NOT_AVAILABLE on Android 2.2

百般思念 提交于 2019-11-26 06:42:23
问题 I am getting the error \"SERVICE_NOT_AVAILABLE\" on my GoogleCloudMessaging.register() call on a Android 2.2 device. I am writing an app that uses GoogleCloudMessaging using the new Google Play Services. I implemented it using the guidelines provided on the Android website and my source contains a lot of error checking and handling code such as making sure the Google Play Services is installed, or updated. The GCM registration code also implements a exponential backoff as google as suggested