-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare release 1.7.0 beta.2 with VoxeetSDK 3.4.0-beta.2 (#28)
* Fixed an issue where a participant cannot connect to a conference using a push notification after reopening an application. * Bump VoxeetSDK to v3.4.0-beta.2 and UXKit to 1.7.0-beta.2
- Loading branch information
Showing
10 changed files
with
42 additions
and
10 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
binary "https://raw.githubusercontent.com/voxeet/voxeet-sdk-ios/v3.4.0-beta.1/VoxeetSDK.json" ~> 3.0 | ||
binary "https://raw.githubusercontent.com/voxeet/voxeet-sdk-ios/3.4.0-beta.2/VoxeetSDK.json" ~> 3.0 | ||
github "onevcat/Kingfisher" ~> 7.0 |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
binary "https://raw.githubusercontent.com/voxeet/voxeet-sdk-ios/v3.4.0-beta.1/VoxeetSDK.json" "3.4.0" | ||
binary "https://raw.githubusercontent.com/voxeet/voxeet-sdk-ios/3.4.0-beta.2/VoxeetSDK.json" "3.4.0" | ||
github "onevcat/Kingfisher" "7.1.2" |
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 |
---|---|---|
@@ -1 +1 @@ | ||
github "voxeet/voxeet-uxkit-ios" "release/1.7.0-beta.1" | ||
github "voxeet/voxeet-uxkit-ios" "release/1.7.0-beta.2" |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
binary "https://raw.githubusercontent.com/voxeet/voxeet-sdk-ios/v3.4.0-beta.1/VoxeetSDK.json" "3.4.0" | ||
binary "https://raw.githubusercontent.com/voxeet/voxeet-sdk-ios/3.4.0-beta.2/VoxeetSDK.json" "3.4.0" | ||
github "onevcat/Kingfisher" "7.1.2" |
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
28 changes: 28 additions & 0 deletions
28
VoxeetUXKit/Code/Utilities/Extensions/UIApplicationExtension.swift
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,28 @@ | ||
// | ||
// UIApplicationExtension.swift | ||
// VoxeetUXKit | ||
// | ||
// Created by Yuriy Ganushevich on 20/01/2022. | ||
// Copyright © 2022 Voxeet. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
extension UIApplication { | ||
|
||
static var keyWindow: UIWindow? { | ||
if #available(iOS 13, *) { | ||
return UIApplication | ||
.shared | ||
.connectedScenes | ||
.compactMap { $0 as? UIWindowScene } | ||
.flatMap { $0.windows } | ||
.first { $0.isKeyWindow } | ||
} else { | ||
return UIApplication | ||
.shared | ||
.windows | ||
.first { $0.isKeyWindow } | ||
} | ||
} | ||
} |
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