Force disabling of foreground notification vibration.

This commit is contained in:
Alan Evans
2021-02-12 16:08:36 -04:00
parent 4afb459b30
commit 0d9490e1fb
2 changed files with 10 additions and 2 deletions

View File

@@ -112,6 +112,7 @@ public final class GenericForegroundService extends Service {
.setContentTitle(active.title)
.setProgress(active.progressMax, active.progress, active.indeterminate)
.setContentIntent(PendingIntent.getActivity(this, 0, MainActivity.clearTop(this), 0))
.setVibrate(new long[]{0})
.build());
}