Is there a way to disable the vibration via push notification payload when notification displayed?
This is my sample payload.
$payload = array
(
'title' => 'Title',
'message' => 'Message',
'vibrate' => 0,
'content-available' => 1
);
But vibration is still working even I set the vibrate value to 0.
Any help will be greatly appreciated. Thank you!