我正在使用带有Android M Preview的Nexus 5。
我想解决的问题是:
禁用网络访问,除非您的应用获得高优先级 Google Cloud Messaging发痒。
我正在做的是:
我将手机置于打盹模式,然后发送优先级值为10的推送通知,我希望能在短时间内访问互联网,但这不起作用。
我应该使用其他类型的通知吗?有没有可用的文件?
感谢。
Android M更改: https://developer.android.com/preview/behavior-changes.html
我发现了有关GCM优先级消息的信息: https://developers.google.com/cloud-messaging/server-ref
答案 0 :(得分:8)
将优先级设置为10是正确的做法,但它不适用于在I / O上发布的Android M版本。它已得到修复,优先级为10的消息将在公开发布时按预期工作。
答案 1 :(得分:2)
事实上,它与Google Play服务版本有关,而与Android版本无关。使用“高”作为优先级。
答案 2 :(得分:0)
只需将其添加到您的文件(.php,.jsf等)中:
$fields = array(
'registration_ids' => $android,
**'priority' => 'high',**
'data' => array( 'message' => $message,
'title' => $title,
'created_at' => $created_at,
'is_background' => $is_background,
'pantallaMostrarPushAndroid' => "pushNotificationNormal")
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($fields));
// Execute post
$resultAndroid = curl_exec($ch);