From 16ee34d7a768007a2811ab765faba2b980a29f00 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 13 Aug 2018 07:54:08 -0400 Subject: [PATCH] set calendars removed by linker --- src/App/App.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/App/App.cs b/src/App/App.cs index 69e1b6718..43a0392cb 100644 --- a/src/App/App.cs +++ b/src/App/App.cs @@ -317,6 +317,10 @@ namespace Bit.App AppResources.Culture = ci; _localizeService.SetLocale(ci); } + + // Calendars are removed by linker. ref https://bugzilla.xamarin.com/show_bug.cgi?id=59077 + new System.Globalization.ThaiBuddhistCalendar(); + new System.Globalization.HijriCalendar(); } } }