mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 05:13:31 +00:00
* EC-770 Started implementing MessagePack for the iPhone -> Watch communication * EC-770 Removed Pods and installed MessagePack through SPM * EC-770 Implemented MessagePack + Lzfse compression when syncing iPhone -> Watch * EC-770 Added MessagePack as submodule and updated the build to checkout the submodule as well. Also added MessagePack files as reference in the watch project * EC-770 Updated build Updated build.yml to checkout submodules on iOS
29 lines
888 B
C#
29 lines
888 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Bit.App.Services;
|
|
using Bit.Core.Abstractions;
|
|
|
|
namespace Bit.Droid.Services
|
|
{
|
|
public class WatchDeviceService : BaseWatchDeviceService
|
|
{
|
|
public WatchDeviceService(ICipherService cipherService,
|
|
IEnvironmentService environmentService,
|
|
IStateService stateService,
|
|
IVaultTimeoutService vaultTimeoutService)
|
|
: base(cipherService, environmentService, stateService, vaultTimeoutService)
|
|
{
|
|
}
|
|
|
|
protected override bool IsSupported => false;
|
|
|
|
public override bool IsConnected => false;
|
|
|
|
protected override bool CanSendData => false;
|
|
|
|
protected override Task SendDataToWatchAsync(byte[] rawData) => throw new NotImplementedException();
|
|
|
|
protected override void ConnectToWatch() => throw new NotImplementedException();
|
|
}
|
|
}
|