By using the library FirebaseAuthentication.net, version: 3.7.1
I am trying to create a new user in firebase with the method: (private async void SignUpClicked(object obj))
With the next code I can not put a break point. The same code, and the same version of the library in a empty project it works, then something happen with Syncfusion.
using Firebase.Auth;
[SignUpPageViewModel.cs]
private async void SignUpClicked(object obj)
{
if (this.AreFieldsValid())
{
// Do something with firebase auth
try
{
string webAPIkey = "AIzaSyDogjZsyaCmzbxBiLHUfN1Q-Eg1WV4NEyk";
var authProvider = new FirebaseAuthProvider(new FirebaseConfig(webAPIkey));
}
}
}
The error showed is this one:
System.TypeLoadException: 'Could not load type of field 'Arriendame_v2.ViewModels.SignUpPageViewModel+<SignUpClicked>d__21:<authProvider>5__4' (7) due to: Could not resolve type with token 0100009c from typeref (expected class 'Firebase.Auth.FirebaseAuthProvider' in assembly 'Firebase.Auth, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null') assembly:Firebase.Auth, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null type:Firebase.Auth.FirebaseAuthProvider member:(null)'
thank you very much for your help.