mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +03:00
face id strings
This commit is contained in:
parent
defb67c523
commit
961e23f0b8
2 changed files with 4 additions and 3 deletions
|
@ -88,7 +88,8 @@ namespace Bit.App.Pages
|
||||||
|
|
||||||
if(FingerprintLock)
|
if(FingerprintLock)
|
||||||
{
|
{
|
||||||
FingerprintButtonText = AppResources.UseFingerprintToUnlock; // TODO: FaceID text
|
FingerprintButtonText = _deviceActionService.SupportsFaceId() ? AppResources.UseFaceIDToUnlock :
|
||||||
|
AppResources.UseFingerprintToUnlock;
|
||||||
var tasks = Task.Run(async () =>
|
var tasks = Task.Run(async () =>
|
||||||
{
|
{
|
||||||
await Task.Delay(500);
|
await Task.Delay(500);
|
||||||
|
|
|
@ -207,8 +207,8 @@ namespace Bit.App.Services
|
||||||
{
|
{
|
||||||
if(text == null)
|
if(text == null)
|
||||||
{
|
{
|
||||||
text = AppResources.FingerprintDirection;
|
text = _deviceActionService.SupportsFaceId() ? AppResources.FaceIDDirection :
|
||||||
// TODO: face id direction
|
AppResources.FingerprintDirection;
|
||||||
}
|
}
|
||||||
var fingerprintRequest = new AuthenticationRequestConfiguration(text)
|
var fingerprintRequest = new AuthenticationRequestConfiguration(text)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue