Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies declared in Podfile and Package.swift #1149

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GliaWidgets.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ Pod::Spec.new do |s|
}
s.exclude_files = ['GliaWidgets/Window/**']

s.dependency 'GliaCoreSDK', '2.0.2'
s.dependency 'GliaCoreSDK', '2.0.4'
end
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ extension CoreSdkClient {
typealias LoggingError = GliaCoreSDK.LoggingError
typealias LogLevel = GliaCoreSDK.LogLevel
typealias Request = GliaCoreSDK.Request
typealias EngagementChangedBlock = GliaCoreSDK.EngagementChangedBlock
}

extension CoreSdkClient {
Expand Down
6 changes: 6 additions & 0 deletions GliaWidgets/Sources/Interactor/Interactor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,12 @@ extension Interactor {
}

extension Interactor: CoreSdkClient.Interactable {
var onEngagementChanged: CoreSdkClient.EngagementChangedBlock {
return { [weak self] engagement in
self?.currentEngagement = engagement
}
}

var onScreenSharingOffer: CoreSdkClient.ScreenshareOfferBlock {
return { [weak self] answer in
self?.notify(.screenShareOffer(answer: answer))
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ let package = Package(
),
.binaryTarget(
name: "GliaCoreSDK",
url: "https://github.com/salemove/ios-bundle/releases/download/2.0.2/GliaCoreSDK.xcframework.zip",
checksum: "8a62b4c886b9f03abcd9effe8064237719a32199701497622437c7257b01a240"
url: "https://github.com/salemove/ios-bundle/releases/download/2.0.4/GliaCoreSDK.xcframework.zip",
checksum: "67eea14b995b29df2fffaedcb6a043f12a0f43ab27e8655b96f596cb4b3c6992"
),
.binaryTarget(
name: "GliaWidgetsSDKXcf",
Expand Down
4 changes: 2 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PODS:
- AccessibilitySnapshot/Core
- SnapshotTesting (~> 1.0)
- GliaCoreDependency (2.3.0)
- GliaCoreSDK (2.0.2):
- GliaCoreSDK (2.0.4):
- GliaCoreDependency (= 2.3.0)
- TwilioVoice (= 6.8.0)
- WebRTC-lib (= 119.0.0)
Expand All @@ -34,7 +34,7 @@ SPEC REPOS:
SPEC CHECKSUMS:
AccessibilitySnapshot: a91e4a69f870188b51f43863d9fc7269d07cdd93
GliaCoreDependency: 37f48a5a32e2646617b87cbe9d4b30eedd123f6f
GliaCoreSDK: 5a63103523b3eaa1db9c81f644222a70be06a2d4
GliaCoreSDK: 35d8f755e1612b863bd87045d8350aa79cf6fcc1
SnapshotTesting: 6141c48b6aa76ead61431ca665c14ab9a066c53b
SwiftLint: eb47480d47c982481592c195c221d11013a679cc
TwilioVoice: 9563c9ad71b9ab7bbad0b59b67cfe4be96c75d23
Expand Down
Loading