Skip to content

ReactNative Ignite

David Welch edited this page Jul 11, 2022 · 4 revisions

Some scraps from getting started...

volta install [email protected] # note this is what changes often

LOCATION=$(volta which node)
LOCATION=$(dirname $LOCATION)
LOCATION=$(dirname $LOCATION)
export PATH="$LOCATION/bin:$PATH"
export LDFLAGS="-L$LOCATION/lib"
export CPPFLAGS="-I/usr/local/opt/node@14/include"

npx ignite-cli new IgnitePlayground


# Make sure to deactive "automatically manage profiles"
# run `fastlane match` and then `fastlane build` in ios

Trouble Shooting

If you're on Arm64 Mac, probably need to run this

env /usr/bin/arch -arm64 /bin/bash --login

If your cocoapods is being stupid and you're on a Mac M1

sudo gem uninstall cocoapods
arch -arm64 brew install cocoapods
# may need to run afterwards
brew link --overwrite cocoapods