ALWAYS

Sound is always played for notifications.

Forces notification sound to play regardless of device ringer mode (silent, vibrate, or normal). Use this for critical notifications that should always alert the user with sound.

Note: This setting overrides the device's ringer mode. Use carefully as it may interrupt users when they have explicitly silenced their device. Example:


	  // Critical alerts that must make sound (e.g., delivery app)
	  PushwooshNotificationSettings settings = new PushwooshNotificationSettings();
	  settings.setSoundNotificationType(SoundType.ALWAYS);
	
	  Log.d("App", "Critical notifications will always play sound");
	
	  // For emergency or time-sensitive apps
	  if (isEmergencyMode) {
	      settings.setSoundNotificationType(SoundType.ALWAYS);
	  }