NO_SOUND
Sound is never played for notifications.
Disables notification sounds completely, regardless of device ringer mode. Useful for apps that need silent notifications or have custom sound handling. Example:
// Silent notifications for focus/productivity app
PushwooshNotificationSettings settings = new PushwooshNotificationSettings();
settings.setSoundNotificationType(SoundType.NO_SOUND);
// User can still see notifications in tray, but no sound
Log.d("App", "Notifications will be silent");
Content copied to clipboard