i create notification channel to show notification in android 8.0 as below
NotificationChannel uploadChannel = new NotificationChannel(Constants.NOTIFICATION_CHANNEL_UPLOAD_ID,"Uploads", NotificationManager.IMPORTANCE_LOW);
uploadChannel.enableLights(false);
uploadChannel.setDescription("Uploads Channel");
notificationManager.createNotificationChannel(uploadChannel);
each time i show notification the phone vibrate many times. i disable vibrate from notification channel as below
uploadChannel.enableVibration(false);
i create notification as below
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context, Constants.NOTIFICATION_CHANNEL_UPLOAD_ID);
but it is not working phone is vibrating with each notification.