根据Android的新Google GCM实施,有一种新方法在刷新令牌时调用。
@Override
public void onTokenRefresh() {
// Fetch updated Instance ID token and notify our app's server of any changes (if applicable).
Intent intent = new Intent(this, RegistrationIntentService.class);
startService(intent);
}
我想询问是否有任何方法可以触发此流程以测试所描述的功能,因为文档中不包含任何有关此信息的信息。
提前致谢!