每當我殺掉我的android應用程序(從任務列表中刪除它)時,即使優先級很高,我也無法收到GCM通知。無法接收GCM通知
這裏是我的JSON數組
$fields = array(
'registration_ids' => $registatoin_ids,
'data' => $message,
'priority' => "high",
'delay_while_idle' => false,
'time_to_live' => 86400 // time in seconds (24 hours)
);
你看,我有它的優先級設置爲高。我的應用工作正常,我也收到GCM通知,但只有當它在任務列表中或在後臺運行時。
請幫幫我。
我試圖通過這個線程
device doesn't receive notification if application is stopped
得到,但不解決我的問題。
[Android GCM(推送通知):設備在應用程序停止時沒有收到通知]的可能重複(http://stackoverflow.com/questions/12073449/android-gcm-push-notification-device-doesnt-收到通知,如果-APPLICAT) –