All actual info about the Cellr app and developing process holds here:
"Cellr" project setup needs MacOS for iOS launching and deploying
Set up react-native environment. Follow instalation guide.
Assumed that on the device already installed XCode, node.js (stable), yarn, cocoa pods, npm and Android studio and Android SDK
git clone https://{userName}@bitbucket.org/cellarventuresdev/celler-mobile.git
git checkout branchName
Then run command to install node_modules dependencies
yarn
or
npm install
For iOS launching it is needed to instal pods native dependencies:
cd ios
and then
pod install
pod update
and then exit from ios directory
cd ..
Link ios resources and assets:
yarn build:ios
Open XCode project. Open the file with the project by path:
yourPath/celler-mobile/ios/Cellar.xcworkspace
Then press on "Play" button.
Run command
yarn ios
Set up local.properties file with your own directory path and place it
yourPath/celler-mobile/android/local.properties
For example (content of local properties):
sdk.dir = /Users/{macName}/Library/Android/sdk
Open Android Studio and open android project for Cellar:
yourPath/celler-mobile/android/
Sync and Build project. Now you can launch the app by pressing the "Play" button in android studio or by command
yarn android