[Bug] How do i get what is causing this specific error ? #15371
-
I am getting the following error in my application it seems to be around when am using the messaing centre but its giving me no real detail as to what the issue actually is as most of the references it pointing to is xamrain forms under the hood code. It looks like its something to do with this call.
at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00081] in /Users/builder/jenkins/workspace/archive-mono/2020-02/android/release/mcs/class/corlib/System.Reflection/RuntimeMethodInfo.cs:409
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Not 100% sure, but I don't think you can have nulls in your DisplayAlert. Change this |
Beta Was this translation helpful? Give feedback.
Not 100% sure, but I don't think you can have nulls in your DisplayAlert. Change this
await DisplayAlert(Constants.AppName, "Player added automatically to weight screen", null, "OK");
toawait DisplayAlert(Constants.AppName, "Player added automatically to weight screen", "OK");