Closed raisfeld-ori closed 5 months ago
same with me
same with me too
i found that google login is not working with expo go. Have to build by android or ios. and then google sign in almost working.
i found that google login is not working with expo go. Have to build by android or ios. and then google sign in almost working.
Thank you it worked!
i found that google login is not working with expo go. Have to build by android or ios. and then google sign in almost working.
can confirm, using eas builds solves this issue
i found that google login is not working with expo go. Have to build by android or ios. and then google sign in almost working.
can confirm, using eas builds solves this issue
Hello, Actually I'm new to expo and i m learning eas. I m facing same issue, how can build eas build for development to solve this issue. Thank you in advance.
+1
+1
ref: https://docs.expo.dev/build/setup/
eas build --platform android|ios
After completing the build, download and install it on your device(phone). run your project, open the installed app on your phone, and scan / login your expo account on the development system in device as per reference to work on the development build
I feel it's a bit annoying Expo Go is so convenient for testing out a newly added feature or just checking a small change. However, this inconvenience force me to either turn the google sign in off or put my app to testFlight or using eas build
I feel it's a bit annoying Expo Go is so convenient for testing out a newly added feature or just checking a small change. However, this inconvenience force me to either turn the google sign in off or put my app to testFlight or using eas build
same, I started running an expo go mode and a normal expo mode in my apps (if possible), but it's kind of a hassle to manage
I'm encountering the same issue on both the simulator and a real device. Unfortunately, using EAS build isn’t an option to resolve this, so I may consider removing this feature
Is this still unsolved? It seems ridiculous that such a basic feature prevents you from seamless development.
so I added google-signin into my project, and so far I only used
GoogleSignin.configure()
andawait GoogleSignin.signIn()
and it worked well. but recently I tried to also open my app on an actual phone, and I got an error:this is weird, since this is an (almost) empty react native project, and the only packages that use google in my case are firebase and google-signin, so I don't understand why am I getting this error. it does disappear when I remove the lines
GoogleSignin.configure()
andawait GoogleSignin.signIn()
, even If I still have the google-signin package installed.here is my package.json in case this is a version issue