我正在使用parse push发送通知 当我从不同的移动设备上运行我的应用程序时,某些移动推送工作正在运行,但是当我看到我的解析仪表板在那里为那些暴徒提供了devicetoken时,某些推送无效。没有产生,并且devicetoken正在为推动工作的那些暴徒生成。
解析时保存设备的代码
ParseInstallation.getCurrentInstallation().put("UserId", MainSingleTon.ObjectID);
ParseInstallation.getCurrentInstallation().saveInBackground(new SaveCallback() {
@Override
public void done(ParseException arg0) {
// TODO Auto-generated method stub
if(arg0==null) { //if Error is null
Intent loginIntent = new Intent("com.example.welcome.MainActivity");
MainSingleTon.UniqueId=ParseInstallation.getCurrentInstallation().getInstallationId();
System.out.println("dhawdudiwhdh "+ MainSingleTon.UniqueId);
startActivity(loginIntent);
mProgressDialog.dismiss();
//saving crendential to shared preferences
saveCendential(user, password,MainSingleTon.ObjectID);
// Dismiss Dialog
overridePendingTransition(R.anim.right_in, R.anim.left_out);
}
else {
mProgressDialog.dismiss();
showToast(arg0.toString());
}
}
});
解析数据库图片链接http://screencast.com/t/EdRnu2skfwy3