The sound, vibrate and ticker will only be played once

Android doc:https://developer.android.com/reference/android/app/Notification.Builder#setOnlyAlertOnce(boolean)

PiperOrigin-RevId: 384227580
This commit is contained in:
olly 2021-07-12 15:14:47 +01:00 committed by Ian Baker
parent d587420650
commit c7d34d768d

View File

@ -1389,6 +1389,7 @@ public class PlayerNotificationManager {
builder.setGroup(groupKey);
}
builder.setOnlyAlertOnce(true);
return builder;
}