react-native-zoom-api-wrapper-ivy
v1.4.0
Published
## Getting started
Downloads
6
Readme
copy zoomcommonlib and zoomsdk to your project android folder
edit android/app/build.gradle and add the following as your dependencies: compile project(':zoomsdk') compile project(':zoomcommonlib')
edit android/settings.gradle and add zoomcommonlib and zoomsdk as includes after your 'app' include: include ':app', ':zoomcommonlib', ':zoomsdk'
add the module folder 'react-native-zoom-api-wrapper-ivy' to your node_modules
then run react-native link react-native-zoom-api-wrapper-ivy - make sure your MainApplication has the import import com.reactlibrary.RNZoomApiWrapperPackage; and your getPackages() is listing new RNZoomApiWrapperPackage() correctly
make sure to add in your AndroidManifest.xml
usage is simple just import the module like this:
import RNZoomApiWrapper from 'react-native-zoom-api-wrapper-ivy';
then call the initiZoomSDK with your keys like this:
RNZoomApiWrapper.initZoomSdk("nWRVRQVBB5NL992aSA2T1CEjPSoALdkwDhQb","8uV38aLgWpo45pIE7VaOUAT30SLRYbqSpnKi","zoom.us");
and finally call starMeeting from wherever you need like this:
RNZoomApiWrapper.starMeeting(this.state.meetingNumber,this.state.displayName,this.state.password)