From b1c735c40d9ccc36337e829427bcf2d001c57b3e Mon Sep 17 00:00:00 2001 From: John Knox Date: Mon, 22 Oct 2018 03:39:16 -0700 Subject: [PATCH] Modify recommended ios build commands (#296) Summary: This will make sure your local pods repo is up to date, so you won't be building against old dependencies. Pull Request resolved: https://github.com/facebook/flipper/pull/296 Reviewed By: passy Differential Revision: D10446899 Pulled By: jknoxville fbshipit-source-id: 61c8832e8d5f7c54a43fc3e419347687756f4883 --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e74161213..ef7fc025c 100644 --- a/README.md +++ b/README.md @@ -84,11 +84,14 @@ yarn build --mac --version $buildNumber ``` cd iOS/Sample -pod install +rm -f Podfile.lock +pod install --repo-update open Sample.xcworkspace ``` +You can omit `--repo-update` to speed up the installation, but watch out as you may be building against outdated dependencies. + ## Android SDK + Sample app Start up an android emulator and run the following in the project root: