Skip to content

Commit 5a50001

Browse files
committed
Release 1.4.0
1 parent 9e5be9b commit 5a50001

File tree

95 files changed

+37
-4648
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+37
-4648
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.swiftpm

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
### 1.4.0 (Oct 1, 2021)
4+
* Updated WebRTC version to M93.
5+
* Added support for Swift Package Manager.
6+
37
### 1.3.0 (Apr 21, 2021)
48
* Updated WebRTC version to M89.
59
* Made `RTCDefaultShader` public.

Package.swift

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// swift-tools-version:5.3
2+
import PackageDescription
3+
4+
let package = Package(
5+
name: "WebRTC",
6+
platforms: [.iOS(.v9)],
7+
products: [
8+
.library(
9+
name: "WebRTC",
10+
targets: ["WebRTC"]),
11+
],
12+
dependencies: [
13+
],
14+
targets: [
15+
.binaryTarget(
16+
name: "WebRTC",
17+
url: "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.4.0/WebRTC.xcframework.zip",
18+
checksum: "8fad0f8a612e59204d2ab4e29e611213aa31522b5253dedfe9405ddcdc00437c"
19+
)
20+
]
21+
)

SendBirdWebRTC.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"1.0.1": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.0.1/WebRTC.framework.zip",
3+
"1.1.0": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.1.0/WebRTC.framework.zip",
4+
"1.1.1": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.1.1/WebRTC.framework.zip",
5+
"1.2.0": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.2.0/WebRTC.framework.zip",
6+
"1.3.0": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.3.0/WebRTC.framework.zip",
7+
"1.4.0": "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.4.0/WebRTC.xcframework.zip"
8+
}

SendBirdWebRTC.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Pod::Spec.new do |s|
22
s.name = "SendBirdWebRTC"
3-
s.version = "1.3.0"
3+
s.version = "1.4.0"
44
s.summary = "WebRTC Framework"
55
s.description = "WebRTC Framework for SendBird Video Chat"
66
s.homepage = "https://sendbird.com"
77
s.license = { :type => 'BSD', :file => 'LICENSE' }
88
s.authors = { "Jed Gyeong" => "jed.gyeong@sendbird.com", "Young Hwang" => "young.hwang@sendbird.com", "Minhyuk Kim" => "minhyuk.kim@sendbird.com", "Jaesung Lee" => "jaesung.lee@sendbird.com" }
9-
s.source = { :git => "https://github.com/sendbird/sendbird-webrtc-ios.git", :tag => "#{s.version}" }
109
s.requires_arc = true
1110
s.platform = :ios, "9.0"
1211
s.documentation_url = 'https://docs.sendbird.com/'
13-
s.ios.vendored_frameworks = 'WebRTC.framework'
12+
s.source = { :http => "https://github.com/sendbird/sendbird-webrtc-ios/releases/download/1.4.0/WebRTC.xcframework.zip" }
13+
s.ios.vendored_frameworks = 'WebRTC.xcframework'
1414
end

WebRTC.framework/Headers/RTCAudioSession.h

Lines changed: 0 additions & 264 deletions
This file was deleted.

WebRTC.framework/Headers/RTCAudioSessionConfiguration.h

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)