IOS push notification custom sound replay?

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'
);
+4
source share
1 answer

You cannot directly repeat the sound.
You must send another notification to trigger a sound another time.

, :
apple push-

+2

All Articles