__tests__ | ||
.bundle | ||
android | ||
ios | ||
.buckconfig | ||
.eslintrc.js | ||
.gitignore | ||
.prettierrc.js | ||
.ruby-version | ||
.watchmanconfig | ||
app.json | ||
App.tsx | ||
babel.config.js | ||
Gemfile | ||
Gemfile.lock | ||
index.js | ||
metro.config.js | ||
package.json | ||
README.md | ||
tsconfig.json | ||
yarn.lock |
bigbluebutton-mobile
BigBlueButton mobile application.
This repository contains the UI and the packaging information (targets, signing, etc).
It also contains the sample implementation that allows users to add BigBlueButton portals.
Important: This is an work in progress and is not ready to be used by the community. Please stay tunned.
Development
Linux
To build this application in linux, you need to run:
# 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
Simulator
To build this application in mac, you need to run:
# 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 --simulator="iPhone 13"
Real device
Debug mode
To run this application in a real ios device, you need to run:
#Install package
npm install -g ios-deploy
#Run
npx react-native run-ios --device "iPhone de TDJ"
Release mode
To run a release version of this application in a real ios device, you need to run:
npx react-native run-ios --configuration Release --device "iPhone de TDJ"
Open project in XCODE
To change native code, you can run this command:
open ios/BigBlueButton.xcworkspace