1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-18 09:13:15 +00:00

Merge branch 'master' into EC-295-swipe-to-copy-logins

This commit is contained in:
Federico Andrés Maccaroni
2022-09-09 15:58:50 -03:00
130 changed files with 8718 additions and 872 deletions

View File

@@ -200,6 +200,7 @@ namespace Bit.iOS.Core.Utilities
{
await ServiceContainer.Resolve<IEnvironmentService>("environmentService").SetUrlsFromStorageAsync();
InitializeAppSetup();
// TODO: Update when https://github.com/bitwarden/mobile/pull/1662 gets merged
var deleteAccountActionFlowExecutioner = new DeleteAccountActionFlowExecutioner(
ServiceContainer.Resolve<IApiService>("apiService"),
@@ -239,5 +240,12 @@ namespace Bit.iOS.Core.Utilities
await postBootstrapFunc.Invoke();
}
}
private static void InitializeAppSetup()
{
var appSetup = new AppSetup();
appSetup.InitializeServicesLastChance();
ServiceContainer.Register<IAppSetup>("appSetup", appSetup);
}
}
}