Skip to content

Commit

Permalink
disable vibration
Browse files Browse the repository at this point in the history
  • Loading branch information
atavism committed Oct 4, 2023
1 parent 431ede3 commit f4b4912
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class NotificationHelper(
private fun setChannelOptions(notificationChannel: NotificationChannel) {
notificationChannel.enableLights(true)
notificationChannel.lightColor = Color.GREEN
notificationChannel.enableVibration(true)
notificationChannel.enableVibration(false)
notificationChannel.setSound(null, null)
manager.createNotificationChannel(notificationChannel)
}
Expand Down

0 comments on commit f4b4912

Please sign in to comment.