Skip to content

Latest commit

 

History

History
97 lines (76 loc) · 2.03 KB

Readme.md

File metadata and controls

97 lines (76 loc) · 2.03 KB

Overview

Project overview

All actual info about the Cellr app and developing process holds here:

Installation

"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

Clone Project from the repository

git clone https://{userName}@bitbucket.org/cellarventuresdev/celler-mobile.git

Checkout to the actual branch

git checkout branchName

Then run command to install node_modules dependencies

yarn

or

npm install

iOS launching

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

Two ways to launch

First:

Open XCode project. Open the file with the project by path:

yourPath/celler-mobile/ios/Cellar.xcworkspace

Then press on "Play" button.

Second:

Run command

yarn ios

Android launching

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