[Native] React-Native flavour of Bubble: A problem-solving and stress management anonymous chat application
-
Install node and watchman.
brew install node brew install watchman
-
Install React Native Client globally.
npm install -g react-native-cli
-
Install XCode and Android Studio.
-
Configure Android SDK.
- Setup Android Environment and $PATH in .bashrc and .profile.
// Locate the Android SDK yourself. It might not be the same as ANDROID_HOME here. export ANDROID_HOME=/Users/<YOUR_USERNAME>/Library/Android/sdk export PATH=$PATH:$ANDROID_HOME/tools export PATH=$PATH:$ANDROID_HOME/platform-tools
- Install Android SDK Platform-tools, revision 23.0.1. (Open through Android Studios)
- Install and setup Android Virtual Device.
android avd
-
Install dependencies.
cd Bubble npm install
-
Run with Android in Bubble directory.
react-native run-android
If you encounter Server 500 Error, try to kill the process that is sharing the same port as the emulator and try again.
-
Run with iOS in Bubble directory.
react-native run-ios