I've got the auth system set up on nativescript. When I try to use google signin, though, it doesn't let me use the emulator like I usually can on the web.
Here's the code I'm trying to use:
const auth = firebase().auth();
auth.useEmulator('http://127.0.0.1', 9099)
auth.addAuthStateChangeListener((user) => {
if (!user) {
console.log('User is currently signed out!');
} else {
console.log('User is signed in!');
}
})
and the sign in looks like this:
await GoogleSignin.configure()
...
await GoogleSignin.signIn();
No matter what I do the prompt from iOS says, "appname" Wants to Use "google.com" to Sign In
How can I get it to redirect to localhost:9099
properly?