Webex Meetings
Webex Meetings
Integrating the SDK
Whether you need the full SDK for comprehensive features or a size-optimized version for meeting flows only, this article will help you set up the necessary dependencies.
The Webex Android SDK is distributed via maven. To integrate the SDK into your app, you need to add the following dependency to your app's build.gradle
file:
Add the following repository to your top-level
build.gradle
file:allprojects { repositories { maven { url 'https://devhub.cisco.com/artifactory/webexsdk/' } } }
The Android meetings SDK comes in two variants. If your use case involves only meeting flows, consider using the size-optimized Meeting SDK. If you need features beyond meetings, you will need to use the full SDK.
Add the required
webexsdk
library as a dependency for your app in thebuild.gradle
file:For the full SDK:
dependencies { implementation 'com.ciscowebex:webexsdk:3.15.0' }
For the meetings only SDK:
dependencies { implementation 'com.ciscowebex:webexsdk-meeting:3.15.0' }