diff --git a/README.md b/README.md index cf52013..3f2366e 100644 --- a/README.md +++ b/README.md @@ -79,19 +79,19 @@ This demo support Android device with **Android 7.0** or later - For Full SDK ``` dependencies { - implementation 'com.ciscowebex:webexsdk:3.11.0' + implementation 'com.ciscowebex:webexsdk:3.11.1' } ``` - For Meeting SDK ``` dependencies { - implementation 'com.ciscowebex:webexsdk-meeting:3.11.0' + implementation 'com.ciscowebex:webexsdk-meeting:3.11.1' } ``` - For WebexCalling SDK ``` dependencies { - implementation 'com.ciscowebex:webexsdk-wxc:3.11.0' + implementation 'com.ciscowebex:webexsdk-wxc:3.11.1' } ``` diff --git a/app/build.gradle b/app/build.gradle index efa7674..e189ea2 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -32,8 +32,8 @@ android { applicationId "com.cisco.sdk_android" minSdkVersion Versions.minSdk targetSdkVersion Versions.targetSdk - versionCode 3110000 - versionName "3.11.0" + versionCode 3110100 + versionName "3.11.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" @@ -120,9 +120,9 @@ android { dependencies { //At a time only one WebexSDK should be used. - implementation 'com.ciscowebex:webexsdk:3.11.0' // For full flavor - //implementation 'com.ciscowebex:webexsdk-wxc:3.11.0' //For webexCalling flavor - //implementation 'com.ciscowebex:webexsdk-meeting:3.11.0' // For meeting flavor + implementation 'com.ciscowebex:webexsdk:3.11.1' // For full flavor + //implementation 'com.ciscowebex:webexsdk-wxc:3.11.1' //For webexCalling flavor + //implementation 'com.ciscowebex:webexsdk-meeting:3.11.1' // For meeting flavor implementation fileTree(dir: "libs", include: ["*.jar"]) implementation Dependencies.kotlinStdLib