Hi,
Here is the code:
AppMaster.xaml
<MasterDetailPage Appearing="AppMaster_Appearing" ... >
...
</MasterDetailPage>
AppMaster.cs
private void AppMaster_Appearing(Object sender, EventArgs e) {
...
}
If I run the app Project -> Options -> Android Build -> Linker -> Linker behaviour with Link all assemblies option, I receive No method found AppMaster_Appearing ... exception.
If I change the option to either Link SDK assemblies only or Don't link, the app runs.
Am I doing something wrong?