Я пытаюсь использовать C2DM в своем приложении, но я получаю некоторые ошибки
10-14 11:21:14.904: WARN/ActivityManager(61): Unable to start service Intent { act=com.google.android.c2dm.intent.REGISTER (has extras) }: not found
Мой код:
Intent registrationIntent = new Intent("com.google.android.c2dm.intent.REGISTER");
registrationIntent.putExtra("app", PendingIntent.getBroadcast(this, 0, new Intent(), 0)); // boilerplate
registrationIntent.putExtra("sender", "andylor03@gmail.com");
startService(registrationIntent);
Может ли кто-нибудь помочья в этом ...
Счастливый код ...!