I am newbie to Xamarin. I am trying to create application class as below code
[Application]
class MyCustomApplicationClass : Application
{
public MyCustomApplicationClass (IntPtr handle, JniHandleOwnership ownerShip) : base (handle, ownerShip)
{
}
public override void OnCreate ()
{
base.OnCreate();
// add your custom stuff e.g. here...
}
}
It crashes app without MyCustomApplicationClass app is running perfectly fine.
Edited:-
