I work with push notifications. I implemented custom sound for push notifications. Is it possible if the custom sound of the push notification is only 5 seconds, then can I repeat it until the maximum sound limit (30 seconds) is reached?
Example:
Can I play sound for one notification 6 times several times?
JSON payload:
array(
'alert' => $message,
'sound' => 'blackberry_3.mp3'
);
source
share