| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This Kitchen Sink demo employs Cisco Webex service through Webex Android SDK. It provides a developer friendly sample implementation of Webex client SDK and showcases all SDK features. It focuses on how to call and use Webex-SDK APIs. Developers could directly cut, paste, and use the code from this sample. It basically implements Webex-SDK APIs by sequence.
This demo support Android device with Android 7.0 or later
Put AAR file in libs folder of your Android project
Open the project level Gradle file and add the following lines under the repositories tag, which is nested under allprojects.
allprojects {
repositories {
jcenter()
google()
flatDir { dirs 'aars'} //add this line
}
}
Add the following dependency in module level Gradle file and press sync-now
implementation files('libs/WebexSDK.aar')
implementation files('libs/WebexSDK-Meeting.aar')
implementation files('libs/WebexSDK-Wxc.aar')
Add the following repository to your top-level build.gradle file:
allprojects {
repositories {
jcenter()
maven {
url 'https://devhub.cisco.com/artifactory/webexsdk/'
}
}
}
Add the webex-android-sdk library as a dependency for your app in the build.gradle file:
dependencies {
implementation 'com.ciscowebex:webexsdk:3.16.3'
}
dependencies {
implementation 'com.ciscowebex:webexsdk-meeting:3.16.3' }
- For WebexCalling SDK
dependencies { implementation 'com.ciscowebex:webexsdk-wxc:3.16.3' }
- For Messaging SDK
dependencies { implementation 'com.ciscowebex:webexsdk-message:3.16.3' }
For example see README
Please update the below constant in gradle.properties
SCOPE=""
Please update below constants in local.properties file
CLIENT_ID="" CLIENT_SECRET="" REDIRECT_URI="" WEBHOOK_URL=""
| Back | FazBrowse Home | New Git URL |