그러나 expo eject는 너무나 험난하다... 처음부터, bare 프로젝트로 시작해보자.

expo init expo-bare
-> minimal 가즈아

좋아 이제 초기 설정을 시작해보자

먼저 cocoapods가 필요하다. IOS 모듈을 관리해준다.

CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects. It has over 84 thousand libraries and is used in over 3 million apps. CocoaPods can help you scale your projects elegantly.

sudo gem install cocoapods

mac m1에선 Ruby가 문제있는 것 같다.

pod install failed on macOS Big sur

sudo arch -x86_64 gem install ffi
cd expo-bare/ios
arch -x86_64 pod install

성공~

cd ../
yarn run ios

빌드가 조금 걸린다.