From ffcce382dc1bb598f4b6a9308a937341a0946cf6 Mon Sep 17 00:00:00 2001 From: Tiago Jacobs Date: Fri, 11 Feb 2022 19:30:56 -0300 Subject: [PATCH] Add ios and android build instructions --- README.md | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b792fd9..d987e13 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,39 @@ # bigbluebutton-mobile -Repository for mobile code + +BigBlueButton mobile application. + +## Development + +### Linux + +To build this application in linux, you need to run: + +```sh +# Instal Android SDK +sudo apt install android-sdk + +# In one terminal, start metro: +npx react-native start + +# In other terminal, run the app: +npx react-native run-android +``` + +### MAC + +To build this application in mac, you need to run: + +```sh +# Install cocoapods gem +sudo gem install cocoapods + +# Install dependencies +npx pod-install + +# In one terminal, start metro: +npx react-native start + +# In other terminal, run the app: +npx react-native run-ios + +```