Hi!
We're developing a Xamarin Forms project for Android and iOS in which we need to use a calendar.
We added the NuGet packages required as said in https://help.syncfusion.com/xamarin/introduction/control-dependencies#sfcalendar
Then we added both namespace and control in xaml like this:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:syncfusion="clr-namespace:Syncfusion.SfCalendar.XForms;assembly=Syncfusion.SfCalendar.XForms"
x:Class="BiermeisterDemo.ReservaView">
<ContentPage.Content>
<syncfusion:SfCalendar x:Name="calendar" />
</ContentPage.Content>
</ContentPage>
It compiles OK but when launched in Android device (4.2) it crashes with the only message "Excepción no controlada" (not managed exception).
We tried to find out what happens but get no idea. Could anyone please help?