Skip to content

Commit

Permalink
Merge pull request #103 from webex/3.3.0-GA
Browse files Browse the repository at this point in the history
3.3.0-GA release
  • Loading branch information
ankibatr authored Feb 15, 2022
2 parents 58e14ea + 8d33843 commit c3b1fc3
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Change Log
All notable changes to this project will be documented in this file.

#### 3.3.0 Releases
- `3.3.0` Releases - [3.3.0](#330)

#### 3.2.1 Releases
- `3.2.1` Releases - [3.2.1](#321)

Expand Down Expand Up @@ -49,6 +52,38 @@ All notable changes to this project will be documented in this file.
#### 0.2.0 Releases
- `0.2.0` Releases - [0.2.0](#020)

---
## [3.3.0](https://github.com/webex/webex-android-sdk/releases/tag/3.3.0)
Released on **15 February, 2022**.

#### Added
- `Call.setCameraFocusAtPoint(pointX: Float, pointY: Float): Boolean` to set the camera focus at given coordinate.
- `Call.setCameraFlashMode(mode: FlashMode): Boolean` to set the camera flash mode.
- `Call.getCameraFlashMode(): FlashMode` to get the camera flash mode.
- `Call.setCameraTorchMode(mode: TorchMode): Boolean` to set the camera Torch mode.
- `Call.getCameraTorchMode(): TorchMode` to get the camera Torch mode.
- `Call.getCameraExposureDuration(): CameraExposureDuration` to get the exposure duration of the camera.
- `Call.getCameraExposureISO(): CameraExposureISO` to get the exposure ISO of the camera.
- `Call.getCameraExposureTargetBias(): CameraExposureTargetBias` to get the exposure target bias of the camera.
- `Call.setCameraCustomExposure(duration: Double, iso: Float): Boolean` to set the camera custom exposure value using camera exposure duration and ISO.
- `Call.setCameraAutoExposure(targetBias: Float): Boolean` to set the camera auto exposure value using camera exposure target bias.
- `Call.setVideoZoomFactor(factor: Float): Boolean` to set the Zoom IN/OUT factor for the local camera.
- `Call.getVideoZoomFactor(): Float` to get the local camera zoom factor.
- `Call.takePhoto(): Boolean` to takes a snapshot of the local video view.
- `CallObserver.onPhotoCaptured(imageData: ByteArray?)` to notify app whenever a photo is captured.
- `Call.getWXA(): WXA` for Webex assistant and real time transcription controls.
- `Interface WXA` A data type to represent the WebEx Assistant.
- `class Transcription` A data type to represent a transcription object from the WebEx Assistant.

#### Updated
- Fixed - Camera Orientation with respect to device orientation.
- Fixed - Thumbnail for high resolution images not loading.
- Fixed - Decoding of special characters in urlencoded Guest issuer JWT token.
- Fixed - Made `exp` field as optional in Guest Issuer JWT
- Fixed - Callback not being fired for deleting self membership from space.
- Fixed - Fetching inter-cluster team memberships.
- Fixed - DTMF API usage.

---
## [3.2.1](https://github.com/webex/webex-android-sdk/releases/tag/3.2.1)
Released on **30 November, 2021**.
Expand Down
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Cisco Webex Android SDK

> The Cisco Webex™ Android SDK Version 3.2.0
> The Cisco Webex™ Android SDK Version 3.3.0
The Cisco Webex Android SDK makes it easy to integrate secure and convenient Cisco Webex messaging and calling features in your Android apps.

Expand All @@ -20,6 +20,8 @@ This SDK is built with **Android SDK Tools 29** and requires **Android API Level
- [CUCM](#cucm)
- [Virtual Background](#virtual-background)
- [Calendar Meetings](#calendar-meetings)
- [Camera](#camera)
- [Real Time Transcription](#real-time-transcription)
- [Migration Guide](#migration-guide)
- [Sample App](#sample-app)
- [API Reference](#api-reference)
Expand Down Expand Up @@ -77,7 +79,7 @@ Federal Risk and Authorization Management Program) support from 3.1 onwards.

```
dependencies {
implementation 'com.ciscowebex:androidsdk:3.2.1@aar'
implementation 'com.ciscowebex:androidsdk:3.3.0@aar'
}
```
## Usage
Expand Down Expand Up @@ -612,6 +614,12 @@ For virtual background related APIs see [Virtual Background](https://github.com/
## Calendar Meetings
For Calendar Meetings related APIs see [Calendar Meetings](https://github.com/webex/webex-android-sdk/wiki/Calendar-Meetings-APIs)

## Camera
For Camera related APIs see [Camera](https://github.com/webex/webex-android-sdk/wiki/Camera-APIs)

## Real Time Transcription
For Real time transcription related APIs see [Real Time Transcription](https://github.com/webex/webex-android-sdk/wiki/Real-Time-Transcription-APIs)

## Migration Guide
The migration guide is meant to help developers port their code from SDK-v2 to SDK-v3. See [Migration Guide For v2 to v3](https://github.com/webex/webex-android-sdk/wiki/Migration-Guide-for-v2-to-v3)

Expand Down

0 comments on commit c3b1fc3

Please sign in to comment.