Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update docs to include info on installing `cocoapods` (#2744)

* update docs to include info on installing `cocoapods`

* wording

authored by

Hailey and committed by
GitHub
fca00d20 ca66fae3

+15 -3
+15 -3
docs/build.md
··· 3 3 ## App Build 4 4 5 5 - Set up your environment [using the react native instructions](https://reactnative.dev/docs/environment-setup). 6 + - If you're running macOS, make sure you are running the correct versions of Ruby and Cocoapods: 7 + - Check if you've installed Cocoapods through `homebrew`. If you have, remove it: 8 + - `brew info cocoapods` 9 + - If output says `Installed`: 10 + - `brew remove cocoapods` 11 + - If you have not installed `rbenv`: 12 + - `brew install rbenv` 13 + - `rbenv install 2.7.6` 14 + - `rbenv global 2.7.6` 15 + - Add `eval "$(rbenv init - zsh)"` to your `~/.zshrc` 16 + - From inside the project directory: 17 + - `bundler install` 6 18 - Setup your environment [for e2e testing using detox](https://wix.github.io/Detox/docs/introduction/getting-started): 7 - - yarn global add detox-cli 8 - - brew tap wix/brew 9 - - brew install applesimutils 19 + - `yarn global add detox-cli` 20 + - `brew tap wix/brew` 21 + - `brew install applesimutils` 10 22 - After initial setup: 11 23 - Copy `google-services.json.example` to `google-services.json` or provide your own `google-services.json`. (A real firebase project is NOT required) 12 24 - `npx expo prebuild` -> you will also need to run this anytime `app.json` or native `package.json` deps change