Skip to content

Commit

Permalink
Merge pull request #221 from shiguredo/feature/update-libwebrtc-m132.…
Browse files Browse the repository at this point in the history
…6834.5.1

libwebrtc を 132.6834.5.1 に上げる
  • Loading branch information
zztkm authored Jan 17, 2025
2 parents 8c2f5ab + 277d238 commit 35756c5
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

## develop

- [UPDATE] WebRTC m129.6668.1.0 に上げる
- @miosakuma
- [UPDATE] WebRTC m132.6834.5.1 に上げる
- @miosakuma @zztkm
- [UPDATE] システム条件の iOS を 14.0 に上げる
- IPHONEOS_DEPLOYMENT_TARGET を 14.0 に上げる
- SwiftPM の platforms の設定を v14 に上げる
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import Foundation
import PackageDescription

let file = "WebRTC-129.6668.1.0/WebRTC.xcframework.zip"
let file = "WebRTC-132.6834.5.1/WebRTC.xcframework.zip"

let package = Package(
name: "Sora",
Expand All @@ -16,7 +16,7 @@ let package = Package(
.binaryTarget(
name: "WebRTC",
url: "https://github.com/shiguredo/sora-ios-sdk-specs/releases/download/\(file)",
checksum: "c23dc224a8edd61410c089696dc34c03c81712672b0e419df627d4e1fc15bafc"
checksum: "aebb5da7acc657c3307394d114df4a4b69e747554f12af302bcdd2cd0c0b0d20"
),
.target(
name: "Sora",
Expand Down
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ platform :ios, '14.0'

target 'Sora' do
use_frameworks!
pod 'WebRTC', '129.6668.1.0'
pod 'WebRTC', '132.6834.5.1'
end
2 changes: 1 addition & 1 deletion Podfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platform :ios, '14.0'

target 'Sora' do
use_frameworks!
pod 'WebRTC', '129.6668.1.0'
pod 'WebRTC', '132.6834.5.1'
pod 'SwiftLint', '0.51.0'
pod 'SwiftFormat/CLI', '0.53.2'
end
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sora iOS SDK

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

Expand Down
2 changes: 1 addition & 1 deletion Sora.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
}
s.source_files = "Sora/**/*.swift"
s.resources = ['Sora/*.xib']
s.dependency "WebRTC", '129.6668.1.0'
s.dependency "WebRTC", '132.6834.5.1'
s.pod_target_xcconfig = {
'ARCHS' => 'arm64',
'ARCHS[config=Debug]' => '$(ARCHS_STANDARD)'
Expand Down
10 changes: 5 additions & 5 deletions Sora/PackageInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ public enum SDKInfo {
*/
public enum WebRTCInfo {
/// WebRTC フレームワークのバージョン
public static let version = "M129"
public static let version = "M132"

/// WebRTC の branch-heads
public static let branch = "6668"
public static let branch = "6834"

/// WebRTC フレームワークのコミットポジション
public static let commitPosition = "1"
public static let commitPosition = "5"

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

/// WebRTC フレームワークのソースコードのリビジョン
public static let revision = "21508e08e7545a03c8c35a9299923279e3def319"
public static let revision = "afaf497805cbb502da89991c2dcd783201efdd08"

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

0 comments on commit 35756c5

Please sign in to comment.