Skip to content

Commit

Permalink
Merge branch 'LD-5063-update-dependencies'
Browse files Browse the repository at this point in the history
  • Loading branch information
fedulvtubudul committed Jan 9, 2024
2 parents 786979a + eb46fc1 commit a91f1df
Show file tree
Hide file tree
Showing 16 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion Example/MediasoupExample/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ final class ViewController: UIViewController {
print("transport is closed: \(sendTransport.closed)")

DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
if let producer = try? sendTransport.createProducer(for: audioTrack, encodings: nil, codecOptions: nil, appData: nil) {
if let producer = try? sendTransport.createProducer(for: audioTrack, encodings: nil, codecOptions: nil, codec: nil, appData: nil) {
self.producer = producer
producer.delegate = self
print("producer created")
Expand Down
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- Mediasoup-Client-Swift (0.5.0)
- Mediasoup-Client-Swift (0.6.0)

DEPENDENCIES:
- Mediasoup-Client-Swift (from `../`)
Expand All @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
Mediasoup-Client-Swift: 35b63dccce185c95b7959fbaa5da42b0c87e0e57
Mediasoup-Client-Swift: 33ed0404165bd39146452953de31bc23c4cd5ffb

PODFILE CHECKSUM: d4fe3294dd9c7fc46519b6a7b26527f1f545e8d3

Expand Down
2 changes: 1 addition & 1 deletion Mediasoup-Client-Swift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Pod::Spec.new do |spec|
}

spec.name = "Mediasoup-Client-Swift"
spec.version = "0.5.0"
spec.version = "0.6.0"
spec.platform = :ios, "14.0"
spec.module_name = "Mediasoup"
spec.module_map = "Mediasoup/Mediasoup.modulemap"
Expand Down
4 changes: 2 additions & 2 deletions Mediasoup.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@
GENERATE_INFOPLIST_FILE = YES;
HEADER_SEARCH_PATHS = (
"${SRCROOT}/Mediasoup/dependencies/libmediasoupclient/include",
"${SRCROOT}/Mediasoup/dependencies/libmediasoupclient/deps/libsdptransform/include",
"${SRCROOT}/build/libmediasoupclient/device/arm64/_deps/libsdptransform-src/include",
"$(SRCROOT)/Mediasoup/dependencies/webrtc/src",
"$(SRCROOT)/Mediasoup/dependencies/webrtc/src/third_party/abseil-cpp",
"$(SRCROOT)/Mediasoup/dependencies/webrtc/src/sdk/objc/api",
Expand Down Expand Up @@ -669,7 +669,7 @@
GENERATE_INFOPLIST_FILE = YES;
HEADER_SEARCH_PATHS = (
"${SRCROOT}/Mediasoup/dependencies/libmediasoupclient/include",
"${SRCROOT}/Mediasoup/dependencies/libmediasoupclient/deps/libsdptransform/include",
"${SRCROOT}/build/libmediasoupclient/device/arm64/_deps/libsdptransform-src/include",
"$(SRCROOT)/Mediasoup/dependencies/webrtc/src",
"$(SRCROOT)/Mediasoup/dependencies/webrtc/src/third_party/abseil-cpp",
"$(SRCROOT)/Mediasoup/dependencies/webrtc/src/sdk/objc/api",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Swift wrapper for libmediasoupclient with iOS support
If you don't need to customize Mediasoup-Client-Swift itself or its dependencies, just add a line to your Podfile:

```Ruby
pod 'Mediasoup-Client-Swift', '0.5.0'
pod 'Mediasoup-Client-Swift', '0.6.0'
```

3. **Ease of building from scratch**
Expand Down Expand Up @@ -144,7 +144,7 @@ Mediasoup-Client-Swift has almost no logic, it's only a convenient wrapper for o

* [WebRTC (version m120 with patches applied locally)](https://groups.google.com/g/discuss-webrtc/c/ws0_MYHIBOw)

* [libmediasoupclient (version 3.4.0 patched fork)](https://github.com/VLprojects/libmediasoupclient)
* [libmediasoupclient (version 3.4.1 patched fork)](https://github.com/VLprojects/libmediasoupclient)

## Roadmap

Expand Down
10 changes: 5 additions & 5 deletions bin/Mediasoup.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,32 @@
<key>BinaryPath</key>
<string>Mediasoup.framework/Mediasoup</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>Mediasoup.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>Mediasoup.framework/Mediasoup</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>Mediasoup.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file modified bin/Mediasoup.xcframework/ios-arm64/Mediasoup.framework/Mediasoup
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</data>
<key>Modules/Mediasoup.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<data>
Bk+LAX/RVtJJfKix+piLFWJijcw=
swq/+ZxApwo8/KGOp2ai4d1glW0=
</data>
<key>Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
<data>
Expand All @@ -58,7 +58,7 @@
</data>
<key>Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
sr9+C84jnkU+ccNPGC4pAeP75EU=
RZq+Co0bU1F7UNWy/I4wwK5L5lk=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -192,7 +192,7 @@
<dict>
<key>hash2</key>
<data>
WPAWiZke0NdLPiqwNedXGxhOPCi+cB90bONRbnTelbs=
/h9EeIaLHmGu+ahjzUwhC+vXrFRXmX0gPjHJOHXi3rA=
</data>
</dict>
<key>Modules/Mediasoup.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
Expand Down Expand Up @@ -227,7 +227,7 @@
<dict>
<key>hash2</key>
<data>
Z6eCYSiTO0mm4sCDPv0yREjSLZegcW46xrMVaJc6aDg=
Or1e5R+LYwm+eucEhUJNozdOGoXmfnn9ygmu8kB8kGw=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
Loading

0 comments on commit a91f1df

Please sign in to comment.