구글 인증 오류
Make sure GIDClientID is set in Info.plist
React Native Google Sign In을 이용해서 구글 로그인을 구현할 때
await GoogleSignin.hasPlayServices();
을 호출했을 때 발생하는 오류.
해결
GoogleSignin.configure({...})
을 먼저 실행해야한다.
GoogleSignin.configure();
await GoogleSignin.hasPlayServices();