DEFAULT_MODE
Sound is played only when device is in normal ringer mode.
Notification sound will play only if the device's AudioManager ringer mode is set to RINGER_MODE_NORMAL. If the device is in silent or vibrate mode, no sound will be played.
This is the default Android system behavior and respects user's device settings. Example:
PushwooshNotificationSettings settings = new PushwooshNotificationSettings();
// Respect device ringer mode
settings.setSoundNotificationType(SoundType.DEFAULT_MODE);
Content copied to clipboard
See also
AudioManager