mirror of
https://github.com/bitwarden/mobile
synced 2026-01-03 00:53:27 +00:00
do not attempt autofill on android 4.4
This commit is contained in:
@@ -205,7 +205,7 @@ namespace Bit.App.Pages
|
||||
return;
|
||||
}
|
||||
|
||||
if(Uri.StartsWith("http") && _deviceInfoService.Version < 21)
|
||||
if(_deviceInfoService.Version < 21)
|
||||
{
|
||||
MoreClickedAsync(login);
|
||||
}
|
||||
|
||||
@@ -403,7 +403,7 @@ namespace Bit.App.Pages
|
||||
}
|
||||
else if(selection == AppResources.Autofill)
|
||||
{
|
||||
if(Uri.StartsWith("http") && _deviceInfoService.Version < 21)
|
||||
if(_deviceInfoService.Version < 21)
|
||||
{
|
||||
MoreClickedAsync(login);
|
||||
}
|
||||
|
||||
9
src/App/Resources/AppResources.Designer.cs
generated
9
src/App/Resources/AppResources.Designer.cs
generated
@@ -439,6 +439,15 @@ namespace Bit.App.Resources {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Tap this notification to view logins from your vault..
|
||||
/// </summary>
|
||||
public static string BitwardenAutofillServiceNotificationContentOld {
|
||||
get {
|
||||
return ResourceManager.GetString("BitwardenAutofillServiceNotificationContentOld", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Open Accessibility Settings.
|
||||
/// </summary>
|
||||
|
||||
@@ -1027,4 +1027,7 @@
|
||||
<data name="WebVaultUrl" xml:space="preserve">
|
||||
<value>Web Vault Server URL</value>
|
||||
</data>
|
||||
<data name="BitwardenAutofillServiceNotificationContentOld" xml:space="preserve">
|
||||
<value>Tap this notification to view logins from your vault.</value>
|
||||
</data>
|
||||
</root>
|
||||
Reference in New Issue
Block a user