From dabb3b5a77c4a7364507e9a1121e6d4a4472ad40 Mon Sep 17 00:00:00 2001 From: Tiago Jacobs Date: Wed, 20 Apr 2022 00:01:04 -0300 Subject: [PATCH] Update README.md --- README.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 17e7698..a77d1bf 100644 --- a/README.md +++ b/README.md @@ -32,13 +32,19 @@ To build this application in mac, you need to run: sudo gem install cocoapods # Install dependencies -npx pod-install +yarn -# In one terminal, start metro: -npx react-native start +# Install pods +cd ios && pod install && cd - -# In other terminal, run the app: -npx react-native run-ios --simulator="iPhone 13" +# Option 1 - Run simulator and metro in one command +yarn ios + +# Option 2 - Two commands approach: +## In one terminal, start metro: +## npx react-native start +## In other terminal, run the app: +## npx react-native run-ios --simulator="iPhone 13" ```