You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Tiago Jacobs ec1dddb53b
Rename project
2 years ago
.bundle Recreate project using typescript 3 years ago
.github/workflows installing dependecies 3 years ago
.vscode installing dependecies 3 years ago
__tests__ Recreate project using typescript 3 years ago
android build_resolved (#42) 2 years ago
ios Rename project 2 years ago
react-native Rename project 2 years ago
.buckconfig React native project initialization 3 years ago
.eslintrc.js Recreate project using typescript 3 years ago
.gitignore Watch SDK files too 2 years ago
.prettierrc.js Upgrade react 2 years ago
.ruby-version Recreate project using typescript 3 years ago
.watchmanconfig React native project initialization 3 years ago
App.tsx Update to use SDK V0.1.8 3 years ago
Gemfile Recreate project using typescript 3 years ago
Gemfile.lock Upgrade react 2 years ago
README.md Update README.md 2 years ago
app.json Rename project 2 years ago
babel.config.js add libs with depend of navigation drawer and refactor app.tsx 3 years ago
get-transifex-translations.sh move transifex file to project root 2 years ago
index.js add libs with depend of navigation drawer and refactor app.tsx 3 years ago
metro.config.js Rename project 2 years ago
package.json Rename project 2 years ago
tsconfig.json Recreate project using typescript 3 years ago
yarn.lock Rename project 2 years ago

README.md

BigBlueButton-mobile-tablet

BigBlueButton mobile application for tablets - sample implementation.

More details in https://github.com/bigbluebutton/bigbluebutton-mobile-tablet-sdk.

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
yarn

# Install pods
cd ios && pod install && cd -

# Option 1 - Run simulator and metro in one command
yarn ios

# Option 2 - Two commands approach:
## 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