React Native: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
(Created page with "{| | valign="top" | <source lang="bash"> brew install yarn brew install node brew install watchman brew tap AdoptOpenJDK/openjdk brew cask install adoptopenjdk8 </source> |...")
 
No edit summary
Line 20: Line 20:
</source>
</source>
|}
|}


==References==
==References==
* [https://facebook.github.io/react-native/docs/getting-started Getting Started]
* [https://facebook.github.io/react-native/docs/getting-started Getting Started]

Revision as of 22:12, 24 October 2019

brew install yarn
brew install node
brew install watchman

brew tap AdoptOpenJDK/openjdk
brew cask install adoptopenjdk8
vim $HOME/.bash_profile
export ANDROID_HOME=$HOME/Library/Android/sdk
export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/tools/bin
export PATH=$PATH:$ANDROID_HOME/platform-tools

References