if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                                NotificationChannel mChannel = new NotificationChannel(UpdaterHelper.UPDATER_NOTIFICATION_CHANNEL, "App Updates", NotificationManager.IMPORTANCE_LOW);
                                mChannel.setDescription("Notifications when updating the application");
                                mChannel.enableLights(true);
                                mChannel.setLightColor(Color.GREEN);