I dont know what happen when I try to sign in with google on ios, I configured my ios project with my GoogleService-info and my URL types on my project, I cleaned and build my project but nothing happens , my code for login is this service that return a promise
loginWithGoogle(): Promise {
return FirebaseAuthentication.signInWithGoogle();
}
i use this method on my component:
public async loginGoogle() {
console.log(‘login google…’);
this.logInService.loginWithGoogle().then((user: any) => {
console.log('user: ', user)
}).catch((error: any) => {
console.log('error with google auth: ', error)
});
}
on my web app works good but in my ios app not working , not shows the popup, on xcode console shows me “FirebaseAuthentication signInWithGoogle ”
I’m using “@capacitor-firebase/authentication”: “^5.4.1” I tried with other capacitors but not works.
Please Help me!
1 post - 1 participant