在我的应用程序中,我使用推送通知,为此我打算使用 android C2DM。
但是我在谷歌上搜索了几次,在为此设置 gmail 帐户时更加困惑。
以下是我遵循的步骤
第 1 步:使用“mynewapp@gmail.com”之类的邮件 ID 注册 Google C2DM 服务器
在此之后,当我尝试在 android 中实现它时,出现了一些混乱,即
Intent rI = new Intent ("com.google.android.c2dm.intent.REGISTER");
rI.putExtra("app",PendingIntent.getBroadcast(this, 0, new Intent(), 0));
rI.putExtra("sender", "Gmail Id");
this.startService(rI);
在这个
rI.putExtra("sender", "Gmail Id");
实际上我必须使用哪个 gmail id?是我在 C2DM 服务器中注册的还是用户 gmail id(使用设备中的帐户)。
任何帮助表示赞赏。谢谢