/CaseStudy

Primary LanguageTypeScript

CaseStudy

Development & Deploying Guide

Quick start

1. Clone repository

2. Install your dependencies!

yarn install 
OR
npm install   

3. Android and iOS runnning is different. So that follow the steps below.

IOS:

# to install pod dependencies
cd ios
npx pod-install 
OR
pod install

# to run the iOS application
npx react-native run-ios     
OR
yarn ios

Android:

# Make sure the ANDROID_HOME environment variable is configured properly

npx react-native run-android # to run the Android application
OR
yarn android

Now you're ready to rumble!