Skip to content

Commit

Permalink
Added missing IDeviceActionService.cs implementation for iOS to build.
Browse files Browse the repository at this point in the history
  • Loading branch information
dinisvieira committed Feb 21, 2024
1 parent 482563d commit 820e731
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/iOS.Core/Services/DeviceActionService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,11 @@ public long GetActiveTime()
return iOSHelpers.GetSystemUpTimeMilliseconds() ?? DateTimeOffset.UtcNow.ToUnixTimeMilliseconds();
}

public async Task ReturnToPasskeyAfterUnlock()
{
throw new NotImplementedException();
}

public void CloseMainApp()
{
throw new NotImplementedException();
Expand Down

0 comments on commit 820e731

Please sign in to comment.