-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added release notes for version 4.2.1
- Loading branch information
Showing
4 changed files
with
39 additions
and
16 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Version 4.2.1 | ||
|
||
This article describes changes in version 4.2.1 of FCSDKiOS | ||
|
||
## Overview | ||
|
||
Version 4.2.1 has several bug fixes and performance improvements. Below is a list of bug fixes. | ||
|
||
### CBA Swift FCSDK minimum iOS Version support | ||
FCSDKiOS has a minimum version of iOS 13. However, we now allow you to consume our SDK when your projects have a minimum version of iOS 11. You must use the appropriate runtime and compile time checks when using the SDK. This is easily achieved with the following code: | ||
|
||
*Run Time* | ||
```swift | ||
@available(iOS 13.0, *) | ||
//Your Run Time Method | ||
``` | ||
|
||
```swift | ||
if #available(iOS 14.0, *) { | ||
//Your Run Time Code | ||
} | ||
``` | ||
|
||
*Compile Time* | ||
```swift | ||
#if canImport(_Concurrency) | ||
// Your Compile Time Code | ||
#endif | ||
|
||
``` | ||
### Fixed **setDefaultAudio()** not working | ||
When `setDefaultAudio()` was called, it did not properly use the set value when audio hardware routes changed. We now have fixed this issue. | ||
|
||
### Status Media changed to media pending after agent answered | ||
We fixed an issue involving the call state changing at a certain point in the call flow's stream of events when receiving an inbound call. | ||
|