From 95b8efae20e7b3fd7cfaaa77470dddf9f40ffb00 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 30 Jan 2017 23:41:39 -0500 Subject: [PATCH] set color for autofill notification --- src/Android/AutofillService.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Android/AutofillService.cs b/src/Android/AutofillService.cs index cd24eae3e..daa844f66 100644 --- a/src/Android/AutofillService.cs +++ b/src/Android/AutofillService.cs @@ -149,6 +149,8 @@ namespace Bit.Android .SetTicker("Tap this notification to autofill a login from your bitwarden vault.") .SetWhen(Java.Lang.JavaSystem.CurrentTimeMillis()) .SetVisibility(NotificationVisibility.Secret) + .SetColor(global::Android.Support.V4.Content.ContextCompat.GetColor(ApplicationContext, + Resource.Color.primary)) .SetContentIntent(pendingIntent); var notificationManager = (NotificationManager)GetSystemService(NotificationService);