我有一个使用接收通知的应用程序GCM
。我注册了一个终端:
GCMRegistrar.register(this, SENDER_ID);
要获得注册 ID,我打电话:
final String regId = GCMRegistrar.getRegistrationId(this);
如果我对不同的应用程序使用相同的 SENDER_ID 和 API_KEY,每个应用程序的注册 ID会不同吗?
我有一个使用接收通知的应用程序GCM
。我注册了一个终端:
GCMRegistrar.register(this, SENDER_ID);
要获得注册 ID,我打电话:
final String regId = GCMRegistrar.getRegistrationId(this);
如果我对不同的应用程序使用相同的 SENDER_ID 和 API_KEY,每个应用程序的注册 ID会不同吗?