support for org.codeaurora.swe.browser

This commit is contained in:
Kyle Spearrin 2017-05-29 08:35:36 -04:00
parent 04bf86c21d
commit 72d4952812
1 changed files with 7 additions and 1 deletions

View File

@ -32,6 +32,7 @@ namespace Bit.Android
new Browser("com.chrome.canary", "url_bar"),
new Browser("com.google.android.apps.chrome", "url_bar"),
new Browser("com.google.android.apps.chrome_dev", "url_bar"),
new Browser("org.codeaurora.swe.browser", "url_bar"),
new Browser("org.iron.srware", "url_bar"),
new Browser("com.sec.android.app.sbrowser", "sbrowser_url_bar"),
new Browser("com.sec.android.app.sbrowser.beta", "location_bar_edit_text"),
@ -101,7 +102,7 @@ namespace Bit.Android
passwordNodes.Dispose();
}
}
if(!needToFill)
{
NotifyToAutofill(uri, notificationManager);
@ -262,6 +263,11 @@ namespace Bit.Android
Resource.Color.primary));
}
if(Build.VERSION.SdkInt <= BuildVersionCodes.N)
{
builder.SetPriority(-1);
}
notificationManager.Notify(AutoFillNotificationId, builder.Build());
builder.Dispose();