Skip to content

Commit fab7b2f

Browse files
committed
libwebrtc を 130.6723.2.0 にあげる
1 parent dc17a24 commit fab7b2f

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import Foundation
44
import PackageDescription
55

6-
let file = "WebRTC-129.6668.1.0/WebRTC.xcframework.zip"
6+
let file = "WebRTC-130.6723.2.0/WebRTC.xcframework.zip"
77

88
let package = Package(
99
name: "Sora",
@@ -16,7 +16,7 @@ let package = Package(
1616
.binaryTarget(
1717
name: "WebRTC",
1818
url: "https://github.com/shiguredo/sora-ios-sdk-specs/releases/download/\(file)",
19-
checksum: "c23dc224a8edd61410c089696dc34c03c81712672b0e419df627d4e1fc15bafc"
19+
checksum: "cd9de82b6240041dae0804b62dde5dd1b800fbf15be65fd432a1c8cdd878f4bd"
2020
),
2121
.target(
2222
name: "Sora",

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ platform :ios, '14.0'
55

66
target 'Sora' do
77
use_frameworks!
8-
pod 'WebRTC', '129.6668.1.0'
8+
pod 'WebRTC', '130.6723.2.0'
99
end

Podfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ platform :ios, '14.0'
55

66
target 'Sora' do
77
use_frameworks!
8-
pod 'WebRTC', '129.6668.1.0'
8+
pod 'WebRTC', '130.6723.2.0'
99
pod 'SwiftLint', '0.51.0'
1010
pod 'SwiftFormat/CLI', '0.53.2'
1111
end

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Sora iOS SDK
22

3-
[![libwebrtc](https://img.shields.io/badge/libwebrtc-129.6668-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/6668)
3+
[![libwebrtc](https://img.shields.io/badge/libwebrtc-130.6723-blue.svg)](https://chromium.googlesource.com/external/webrtc/+/branch-heads/6723)
44
[![GitHub tag](https://img.shields.io/github/tag/shiguredo/sora-ios-sdk.svg)](https://github.com/shiguredo/sora-ios-sdk)
55
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
66

Sora.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Pod::Spec.new do |s|
1515
}
1616
s.source_files = "Sora/**/*.swift"
1717
s.resources = ['Sora/*.xib']
18-
s.dependency "WebRTC", '129.6668.1.0'
18+
s.dependency "WebRTC", '130.6723.2.0'
1919
s.pod_target_xcconfig = {
2020
'ARCHS' => 'arm64',
2121
'ARCHS[config=Debug]' => '$(ARCHS_STANDARD)'

Sora/PackageInfo.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ public enum SDKInfo {
99
*/
1010
public enum WebRTCInfo {
1111
/// WebRTC フレームワークのバージョン
12-
public static let version = "M129"
12+
public static let version = "M130"
1313

1414
/// WebRTC の branch-heads
15-
public static let branch = "6668"
15+
public static let branch = "6723"
1616

1717
/// WebRTC フレームワークのコミットポジション
18-
public static let commitPosition = "1"
18+
public static let commitPosition = "2"
1919

2020
/// WebRTC フレームワークのメンテナンスバージョン
2121
public static let maintenanceVersion = "0"
2222

2323
/// WebRTC フレームワークのソースコードのリビジョン
24-
public static let revision = "21508e08e7545a03c8c35a9299923279e3def319"
24+
public static let revision = "28b793b4dd275bf2b901b87e01c0ee8d4f5732fc"
2525

2626
/// WebRTC フレームワークのソースコードのリビジョン (短縮版)
2727
public static var shortRevision: String {

0 commit comments

Comments
 (0)