I am new to Syncfusion. I am trying to make a simple project with one of the controls. However the application crashes at runtime. I am using xamarin live to run it on my iphone. Please suggest anything if i am missing anything.
runtime error: Default value did not match return type parameter name: defaultValue (ArgumentException)
here is my code
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:SyncfusionXamarinApp1"
xmlns:combobox="clr-namespace:Syncfusion.XForms.ComboBox;assembly=Syncfusion.SfComboBox.XForms"
xmlns:syncfusion="clr-namespace:Syncfusion.SfSchedule.XForms;assembly=Syncfusion.SfSchedule.XForms"
x:Class="SyncfusionXamarinApp1.MainPage">
<ContentPage.Content>
<syncfusion:SfSchedule x:Name="schedule" />
</ContentPage.Content>
</ContentPage>
In my App class i have specified License key as well
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("abcc..... ==");
InitializeComponent();
the application complies fine and only crashes if there is a syncfusion control.
Any help would be appriciated