Open muehan opened 7 years ago
For make the login you can try this:
//In my main class
options = new FirebaseOptions.Builder()
.SetStorageBucket("</database>.appspot.com")
.SetApplicationId("appid")
.SetApiKey("apikey")
.SetDatabaseUrl("https://</database>.firebaseio.com")
.SetGcmSenderId("gcmsenderid")
.Build();
//For android context
app = FirebaseApp.InitializeApp(Android.App.Application.Context,options);
authProvider = new FirebaseAuthProvider(new FirebaseConfig(options.ApiKey));
//I put this into a async task function
firebaseAuth = await authProvider.SignInWithEmailAndPasswordAsync(</email>, </pass>);
Now I can trying to get persistence user login, but I not sure if this works.
Hi
I use version 0.3.6 from nuget.
If I try to login
it the sign in never returns. No error message, debugger waits and waits and waits