Android - not getting GCM token
问题 I call RegistrationIntentService : if (checkPlayServices()) { Log.i("udazzT", "check servicies"); // Start IntentService to register this application with GCM. Intent intent2 = new Intent(this, RegistrationIntentService.class); startService(intent2); } But I cannot see any of the logs in RegistrationIntentService: public class RegistrationIntentService extends IntentService { private static final String TAG = "RegIntentService"; private static final String[] TOPICS = {"global"}; public