-
Notifications
You must be signed in to change notification settings - Fork 261
Closed
Description
Sound rings only for a few seconds on Android 12 device. However on Android 11 it works just fine.
I tried to implement the notification on native side but faced the similar issue. Luckily I stumbled upon the following piece of code in this guide. After setting the flag it started working on Android 12 as well.
// Set notification as insistent to cause your ringtone to loop.
Notification notification = builder.build();
notification.flags |= Notification.FLAG_INSISTENT;
Can we have an option to update the notification flags when calling displayNotification?