Removed legacy permission lib and updated code to use essentials lib.

This commit is contained in:
Tobias Reski 2021-11-15 09:51:06 +01:00
parent ba3f987d2a
commit 4993778c42
21 changed files with 6 additions and 826 deletions

View file

@ -151,7 +151,6 @@ namespace TINK
DependencyService.Get<ISmartDevice>(),
specialFolders,
new Cipher(),
null, // Permissions, no more used.
#if ARENDI
DependencyService.Get<ICentral>(),
#else
@ -283,7 +282,7 @@ namespace TINK
if (_PermissionsService != null)
return _PermissionsService;
_PermissionsService = new Services.Permissions.Plugin.Permissions();
_PermissionsService = new Services.Permissions.Essentials.Permissions();
return _PermissionsService;
}
}