ALWAYS

Vibration always occurs for notifications.

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

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

Permission Required:VIBRATE permission must be declared in AndroidManifest.xml. Example:


	  // Critical alerts that must vibrate (e.g., alarm or security app)
	  PushwooshNotificationSettings settings = new PushwooshNotificationSettings();
	  settings.setVibrateNotificationType(VibrateType.ALWAYS);
	
	  Log.d("App", "Critical notifications will always vibrate");
	
	  // For delivery apps with time-sensitive notifications
	  if (isDeliveryArriving) {
	      settings.setVibrateNotificationType(VibrateType.ALWAYS);
	      settings.setSoundNotificationType(SoundType.ALWAYS);
	  }
	
	  // For emergency or SOS apps
	  if (isEmergencyAlert) {
	      settings.setVibrateNotificationType(VibrateType.ALWAYS);
	  }