Hello I try to sign in. with google, in chrome works good but in android not open the popup,
this.afAuth.auth.signInWithPopup(new firebase.auth.GoogleAuthProvider());
I try this and dosent work..
let provider = new firebase.auth.GoogleAuthProvider();
firebase.auth().signInWithRedirect(provider).then(() => {
firebase.auth().getRedirectResult().then((result) => {
}).catch(function (error) {
console.log("ERROR", error);
alert(error);
})
});
any solution ?