2022-02-09 22:47:12 +08:00
|
|
|
# bigbluebutton-mobile
|
2022-02-12 06:30:56 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
```
|
2022-02-12 12:04:19 +08:00
|
|
|
|
|
|
|
#### Open project in XCODE
|
|
|
|
|
|
|
|
To change native code, you can run this command:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
open ios/BigBlueButton.xcodeproj
|
|
|
|
```
|