2023-03-02
25 days ago by [email protected]
Updates to Android Client SDK (v3.8.1) - Deprecated the Voxeet URL, introduced a new groupId for applications to consume the SDK, and fixed an ActiveParticipantsEvent issue.
Android Client SDK
3.8.1
Deprecation
Deprecated the https://android-sdk.voxeet.com/release Voxeet URL. You can use the new io.dolby:sdk groupID to consume the SDK.
In your settings.gradle or rootProject's build.gradle, you can remove the following section.
// Remove this section
maven {
url "https://android-sdk.voxeet.com/release"
content {
includeGroup "com.voxeet.sdk"
}
}
Features
Introduced a new groupId for applications to consume the SDK. In your application's build.gradle project, replace com.voxeet.sdk:sdk with io.dolby:sdk.
implementation "io.dolby:sdk:3.8.1"
Bug Fixes
Fixed an issue preventing the ActiveParticipantsEvent to be properly dispatched to the application.