Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mconf/bbb-mobile-template
https://github.com/mconf/bbb-mobile-template
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mconf/bbb-mobile-template
- Owner: mconf
- License: mit
- Created: 2022-11-29T13:13:29.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-01T15:00:45.000Z (almost 2 years ago)
- Last Synced: 2024-04-12T16:08:40.373Z (9 months ago)
- Language: Java
- Size: 734 KB
- Stars: 1
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bbb-mobile-template
## Code dependencies
### Versions
$ node -v
v16.x.y###
$ npm install expo-cli -g#### for android:
$ java --version
openjdk 11
You have to set the Android variables for you environment:
- `export ANDROID_HOME=$HOME/Android/Sdk`
- `export PATH=$PATH:$ANDROID_HOME/tools`## How to run
$ expo init my-app --template @mconf/bbb-mobile-template
$ yarn install
$ expo run:android
$ expo run:ios # you should be on a mac to run this command## Using the sdk in your app
import BbbMobileSdk from "bbb-mobile-sdk";
Pass the joinUrl of your meeting in the jUrl prop, and what to do when the user leave the meeting to the onLeaveSession callback:navigation.replace("Home")}
/>
See https://github.com/mconf/bbb-mobile-template/blob/master/src/screens/InsideConference/index.js for an example.