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
This commit is contained in:
committed by
Facebook Github Bot
parent
c98a463464
commit
b1c735c40d
@@ -84,11 +84,14 @@ yarn build --mac --version $buildNumber
|
|||||||
|
|
||||||
```
|
```
|
||||||
cd iOS/Sample
|
cd iOS/Sample
|
||||||
pod install
|
rm -f Podfile.lock
|
||||||
|
pod install --repo-update
|
||||||
open Sample.xcworkspace
|
open Sample.xcworkspace
|
||||||
<Run app from xcode>
|
<Run app from xcode>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
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
|
## Android SDK + Sample app
|
||||||
|
|
||||||
Start up an android emulator and run the following in the project root:
|
Start up an android emulator and run the following in the project root:
|
||||||
|
|||||||
Reference in New Issue
Block a user