diff --git a/src/Android/MainApplication.cs b/src/Android/MainApplication.cs index 5689cbf33..6c3f2dd3f 100644 --- a/src/Android/MainApplication.cs +++ b/src/Android/MainApplication.cs @@ -39,7 +39,8 @@ namespace Bit.Droid private void RegisterLocalServices() { - FFImageLoading.Forms.Platform.CachedImageRenderer.Init(true); + // Note: This might cause a race condition. Investigate more. + Task.Run(() => FFImageLoading.Forms.Platform.CachedImageRenderer.Init(true)); var preferencesStorage = new PreferencesStorageService(null); var documentsPath = Environment.GetFolderPath(Environment.SpecialFolder.Personal);