Green led color is better with "full-green"

This commit is contained in:
Quentin 2015-03-04 00:57:34 +01:00
parent ac577fe4fd
commit fb3740f07b
1 changed files with 1 additions and 1 deletions

View File

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