So after finally getting emulator to work I started my first project in Visual Studio 2019 (XAML).
A very simple app that pushes a page when a button in MainPage is clicked. Essentially:
private async void Button_OnClicked(object sender, EventArgs e)
{
await Navigation.PushAsync(new DiscoverPage());
}
Discover page being freshly created ContentPage with some basic content.
I’m getting the exception “Segmentation fault”. Stack trace & screenshot:
???
???
???
???
[Unknown/Just-In-Time compiled code]
???
g_main_context_dispatch
???
???
???
ecore_main_loop_begin
elm_run
???
appcore_base_init
appcore_ui_base_init
appcore_efl_base_init
???
ui_app_main
[Unknown/Just-In-Time compiled code]
> Quest_Program::Main() Line 20 C#
???
???
???
???
???
coreclr_execute_assembly
tizen::runtime::dotnetcore::CoreRuntime::launch(char const*, char const*, char const*, int, char**)
main
???
_start
I’m using Windows 10, Tizen.NET 6.0.0.14995, Tizen 4.0
Can anyone help?