mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
move some xamarin specific services to app proj
This commit is contained in:
parent
963b27fd71
commit
9e3ee50020
5 changed files with 6 additions and 5 deletions
|
@ -12,6 +12,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Xamarin.Essentials" Version="1.1.0" />
|
||||||
<PackageReference Include="Xamarin.Forms" Version="3.6.0.264807" />
|
<PackageReference Include="Xamarin.Forms" Version="3.6.0.264807" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
using Bit.Core.Abstractions;
|
using Bit.Core;
|
||||||
|
using Bit.Core.Abstractions;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Bit.Core.Services
|
namespace Bit.App.Services
|
||||||
{
|
{
|
||||||
public class MobileStorageService : IStorageService
|
public class MobileStorageService : IStorageService
|
||||||
{
|
{
|
|
@ -4,7 +4,7 @@ using Newtonsoft.Json.Serialization;
|
||||||
using System;
|
using System;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Bit.Core.Services
|
namespace Bit.App.Services
|
||||||
{
|
{
|
||||||
public class PreferencesStorageService : IStorageService
|
public class PreferencesStorageService : IStorageService
|
||||||
{
|
{
|
|
@ -3,7 +3,7 @@ using Newtonsoft.Json;
|
||||||
using Newtonsoft.Json.Serialization;
|
using Newtonsoft.Json.Serialization;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Bit.Core.Services
|
namespace Bit.App.Services
|
||||||
{
|
{
|
||||||
public class SecureStorageService : IStorageService
|
public class SecureStorageService : IStorageService
|
||||||
{
|
{
|
|
@ -15,7 +15,6 @@
|
||||||
<PackageReference Include="LiteDB" Version="4.1.4" />
|
<PackageReference Include="LiteDB" Version="4.1.4" />
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
|
||||||
<PackageReference Include="PCLCrypto" Version="2.0.147" />
|
<PackageReference Include="PCLCrypto" Version="2.0.147" />
|
||||||
<PackageReference Include="Xamarin.Essentials" Version="1.1.0" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
Loading…
Reference in a new issue