Go to file
2022-02-16 00:21:45 -03:00
__tests__ Recreate project using typescript 2022-02-15 20:55:10 -03:00
.bundle Recreate project using typescript 2022-02-15 20:55:10 -03:00
android Add BigbluebuttonMobile component example in main view 2022-02-15 23:45:44 -03:00
ios Add Broadcast Extension to sample app 2022-02-16 00:16:04 -03:00
.buckconfig React native project initialization 2022-02-11 18:27:29 -03:00
.eslintrc.js Recreate project using typescript 2022-02-15 20:55:10 -03:00
.gitignore Ignore apple files 2022-02-15 20:57:16 -03:00
.prettierrc.js React native project initialization 2022-02-11 18:27:29 -03:00
.ruby-version Recreate project using typescript 2022-02-15 20:55:10 -03:00
.watchmanconfig React native project initialization 2022-02-11 18:27:29 -03:00
app.json React native project initialization 2022-02-11 18:27:29 -03:00
App.tsx Change bundle ID so it works with the example app 2022-02-16 00:21:45 -03:00
babel.config.js React native project initialization 2022-02-11 18:27:29 -03:00
Gemfile Recreate project using typescript 2022-02-15 20:55:10 -03:00
Gemfile.lock Recreate project using typescript 2022-02-15 20:55:10 -03:00
index.js React native project initialization 2022-02-11 18:27:29 -03:00
metro.config.js React native project initialization 2022-02-11 18:27:29 -03:00
package.json Add BigbluebuttonMobile component example in main view 2022-02-15 23:45:44 -03:00
README.md Add more details to README 2022-02-13 15:50:10 -03:00
tsconfig.json Recreate project using typescript 2022-02-15 20:55:10 -03:00
yarn.lock Add BigbluebuttonMobile component example in main view 2022-02-15 23:45:44 -03:00

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

References

IOS