플러터와 파이어베이스 연결 이후에
구글로그인 구현 중에 나오는 에러로 좀 많이 헤맸다. 🥲
비슷한 에러가 발생하신 분들은 참고하시길-!
CocoaPods' output:
↳
Preparing
Analyzing dependencies
Inspecting targets to integrate
Using `ARCHS` setting to build architectures of target `Pods-Runner`: (``)
Fetching external sources
-> Fetching podspec for `Flutter` from `Flutter`
프로젝트 설정 클릭하고 스크롤 맨 밑으로 내린다.
Apple앱을 클릭하고 GoogleService-info.plist
를 다운받는다.
해당 파일을 프로젝트루트/IOS/Runner/
폴더 안에 덮어쓰기한다.
cd ios/
터미널/VSC로 프로젝트루트/IOS
폴더로 이동한다.
arch -x86_64 pod install
명령어를 실행한다.
나의 경우 여기에서도 에러가 났다.
에러를 천천히 읽으며 알려주는대로 pod update GTMSessionFetcher/Core
명령어로 업데이트를 진행했다.
pod setup
명령어로 확인한 이후에 다시
arch -x86_64 pod install
명령어를 실행했다.
굿.. 다시 프로젝트 실행해보니 정상적으로 실행된다!