Skip to content

Commit

Permalink
Release 1.0.0-beta.14
Browse files Browse the repository at this point in the history
  • Loading branch information
mininny committed Jul 24, 2023
1 parent 09e5faa commit 00de9c9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## 1.0.0-beta.14 (Jul 24, 2023)
- Fix an issue where Host's media status won't update properly.

## 1.0.0-beta.13 (June 5, 2023)
- Added bandwidth, resolution, availableBitrate to ConnectionMetrics for better information about the live event.

Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/sendbird/sendbird-webrtc-ios", from: "1.7.0"),
.package(url: "https://github.com/sendbird/sendbird-chat-sdk-ios", from: "4.8.0")
.package(url: "https://github.com/sendbird/sendbird-chat-sdk-ios", from: "4.9.5")
],
targets: [
.binaryTarget(
name: "SendbirdLiveSDK",
url: "https://github.com/sendbird/sendbird-live-sdk-ios/releases/download/v1.0.0-beta.13/SendbirdLiveSDK.xcframework.zip",
checksum: "226895eeba36c86f02a6907fe0b87aacc5ef7c334a9e6cc7a21504cbfd3b5051"
url: "https://github.com/sendbird/sendbird-live-sdk-ios/releases/download/v1.0.0-beta.14/SendbirdLiveSDK.xcframework.zip",
checksum: "ce9fea6d259de12b5b0dfd2a5912fd9e92ac6f835e8ccd8f5aed22dcd52f2db7"
),
.target(name: "SendbirdLiveSDKTarget",
dependencies: [
Expand Down
13 changes: 9 additions & 4 deletions SendbirdLiveSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
Pod::Spec.new do |s|
s.name = 'SendbirdLiveSDK'
s.version = "1.0.0-beta.13"
s.version = "1.0.0-beta.14"
s.summary = 'Sendbird Live iOS Framework'
s.description = 'Sendbird Live API turns a client app into a live streaming platform where users can broadcast themselves in real-time to their followers.'
s.homepage = 'https://sendbird.com'
s.license = { :type => 'Commercial', :file => 'SendbirdLiveSDK/LICENSE' }
s.authors = {
'Minhyuk Kim' => '[email protected]',
'Sendbird' => '[email protected]',
'Ernest Hong' => '[email protected]'
'Damon Park' => '[email protected]',
'Jed Gyeong' => '[email protected]',
'Jaesung Lee' => '[email protected]',
'Tez Park' => '[email protected]',
'Celine Moon' => '[email protected]',
'Young Hwang' => '[email protected]'
}
s.source = { :http => "https://github.com/sendbird/sendbird-live-sdk-ios/releases/download/v1.0.0-beta.13/SendbirdLiveSDK.zip", :sha1 => "29d0a797c93ec7b213efb1749f8c8cda555889d2" }
s.source = { :http => "https://github.com/sendbird/sendbird-live-sdk-ios/releases/download/v1.0.0-beta.14/SendbirdLiveSDK.zip", :sha1 => "e6901a9ee9cb8b511023417735550dc23858cc98" }
s.requires_arc = true
s.platform = :ios, '11.0'
s.documentation_url = 'https://sendbird.com/docs/live/v1/ios/ref/index.html'
s.ios.vendored_frameworks = 'SendbirdLiveSDK/SendbirdLiveSDK.xcframework'
s.dependency "SendBirdWebRTC", "~> 1.7.0"
s.dependency "SendbirdChatSDK", "~> 4.8.0"
s.dependency "SendbirdChatSDK", "~> 4.9.5"
s.ios.frameworks = ["UIKit", "Foundation", "WebRTC", "AVKit", "MediaPlayer", "Network", "CoreTelephony", "VideoToolbox"]
s.ios.library = 'icucore'
end

0 comments on commit 00de9c9

Please sign in to comment.