0

我已经在我的手机和eclipse模拟器上测试了我的应用程序(针对google api level 16),但是即将到来的通知只会显示在真实手机的通知栏中,而不是模拟器中。有什么想法吗?

4

1 回答 1

0

你能检查一下你regID在模拟器上工作时能得到一个吗?

GCMRegistrar.checkDevice(this);
GCMRegistrar.checkManifest(this);

final String regId = GCMRegistrar.getRegistrationId(this);
if (regId.equals("")) {
  GCMRegistrar.register(this, SENDER_ID);
} else {
  Log.v(TAG, "Already registered");
}
于 2012-11-21T10:12:08.670 回答