Skip to content

erlingfjelstad/kitchensink-landscape

Repository files navigation

Cisco Webex Android SDK Example

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

Table of Contents

Screenshots

  1. ScreenShot-1: Main page of Application, listing main functions of this demo.
  2. ScreenShot-2: Initiate call page.
  3. ScreenShot-3: Show call controls when call is connected.
  4. ScreenShot-4: Video calling screen
  5. ScreenShot-5: Teams listing screen
  6. ScreenShot-6: Space related option screen
  7. ScreenShot-7: Space listing screen
  8. ScreenShot-8: Send Message screen

Integration

Option 1

  1. Put AAR file in libs folder of your Android project

  2. 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
      }
    }
    
  3. Add the following dependency in module level Gradle file and press sync-now

    implementation files('libs/WebexSDK.aar')
    

Option 2

  1. Add the following repository to your top-level build.gradle file:

    allprojects {
        repositories {
            jcenter()
            maven {
                url 'https://devhub.cisco.com/artifactory/webexsdk/'
            }
        }
    }
    
  2. Add the webex-android-sdk library as a dependency for your app in the build.gradle file:

    dependencies {
        implementation 'com.ciscowebex:androidsdk:3.2.1@aar'
    }
    

Usage

For example see README

Note

Please update below constants in gradle.properties

CLIENT_ID=""
CLIENT_SECRET=""
SCOPE=""
REDIRECT_URI=""

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages