Update NotificationService.java

Revert led light color
This commit is contained in:
QuentinC 2015-02-27 11:18:15 +01:00
parent 71ce73a271
commit c67a481e4b

View File

@ -214,7 +214,7 @@ public class NotificationService {
mBuilder.setDefaults(0); mBuilder.setDefaults(0);
mBuilder.setSmallIcon(R.drawable.ic_notification); mBuilder.setSmallIcon(R.drawable.ic_notification);
mBuilder.setDeleteIntent(createDeleteIntent()); mBuilder.setDeleteIntent(createDeleteIntent());
mBuilder.setLights(0xff00ff00, 500, 1500); mBuilder.setLights(0xffffffff, 2000, 4000);
final Notification notification = mBuilder.build(); final Notification notification = mBuilder.build();
notificationManager.notify(NOTIFICATION_ID, notification); notificationManager.notify(NOTIFICATION_ID, notification);
} }