반응형
1. 환경 구성
https://reactnative.dev/docs/set-up-your-environment
Set Up Your Environment · React Native
In this guide, you'll learn how to set up your environment, so that you can run your project with Android Studio and Xcode. This will allow you to develop with Android emulators and iOS simulators, build your app locally, and more.
reactnative.dev
node는 이미 설치 되어 있어서 (20.18.1) watchman만 설치
brew install watchman
xcode 16.2 설치
cocoapods 설치
sudo gem install cocoapods
2. 프로젝트 생성
npx create-expo-app@latest
프로젝트 생성 ( gameshop-management )
cd gameshop-management
npx expo start
i 입력 하여 iOS 시뮬레이터 및 테스트
3. 프로젝트 템플릿 삭제
npm run reset-project
준비 완료!
반응형