- Android Studio 설치
- 쉘 환경에 따라서 ~/.bash_profile 또는 ~/.zshrc에 Android 실행 경로 추가
export ANDROID_SDK_ROOT="/Users/username/Library/Android/sdk
export PATH="$ANDROID_SDK_ROOT/platform-tools:$ANDROID_SDK_ROOT/tools:$PATH
- 작업하고 있는 디렉토리에 들어가서 실행 명령어 입력
react-native run-android
- XCode 설치
- 작업하고 있는 디렉토리의 ios 디렉토리로 디렉토리 변경
cd ios
- pod 설치
pod install
- 다시 원래 작업 디렉토리로 돌아가서 실행 명령어 입력
react-native run-ios