Skip to content

Commit

Permalink
Release 1.10.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mininny committed May 23, 2023
1 parent 0f0e8d3 commit 66fc675
Show file tree
Hide file tree
Showing 40 changed files with 818,476 additions and 68,285 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

### 1.10.7 (May 23, 2023)
* Added `SendBirdCall.retrieveMissedDirectCalls` to get incoming direct calls that were not received via push notifications.
* Added `SendBirdCallDelegate.didReceiveVoIPException` to handle any incorrectly received voip push notifications.

### 1.10.6 (Apr 21, 2023)
* Improved connection quality delegate in Direct Calls.

Expand Down
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/sendbird/sendbird-webrtc-ios",
"state": {
"branch": null,
"revision": "227e831ecd4a5c35490a1357cad738aad620c698",
"version": "1.6.0"
"revision": "a92c5e8137242b404ffb9cffc087f4afbcaf7eed",
"version": "1.7.0"
}
}
]
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import PackageDescription

let package = Package(
name: "SendBirdCalls",
platforms: [.iOS(.v9)],
platforms: [.iOS(.v11)],
products: [
.library(
name: "SendBirdCalls",
targets: ["SendBirdCallsTarget"]),
],
dependencies: [
.package(url: "https://github.com/sendbird/sendbird-webrtc-ios", from: "1.6.0")
.package(url: "https://github.com/sendbird/sendbird-webrtc-ios", from: "1.7.0")
],
targets: [
.binaryTarget(name: "SendBirdCalls", path: "SendBirdCalls.xcframework"),
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ This section shows the prerequisites you need to check to use Sendbird Calls SDK

### Requirements

* iOS 9.0 or later
* Swift 4 or later, Objective-C
* Xcode 9 or later, macOS Sierra or later.
* iOS 11.0 or later
* Swift 5 or later, Objective-C
* Xcode 14.1 or later, macOS Sierra or later.

### SDK dependencies

Expand Down Expand Up @@ -83,8 +83,8 @@ For further details on the usage and installation of `CocoaPods` instructions,
2. Create a [Cartfile](https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#cartfile) in the same directory `.xcodeproj` or `.xcworkspace` is.
3. List the desired dependencies in the [Cartfile](https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#cartfile) as show below.
```bash
github "sendbird/sendbird-calls-ios" ~> 1.9.0
github "sendbird/sendbird-webrtc-ios" ~> 1.4.0
github "sendbird/sendbird-calls-ios" ~> 1.10.7
github "sendbird/sendbird-webrtc-ios" ~> 1.7.0
```
4. Run `carthage update --use-xcframeworks`.
5. A `Cartfile.resolved` file and a `Carthage` directory will appear in the same directory as `.xcodeproj` or `.xcworkspace` .
Expand Down
6 changes: 3 additions & 3 deletions SendBirdCalls.podspec
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
Pod::Spec.new do |s|
s.name = "SendBirdCalls"
s.version = "1.10.6"
s.version = "1.10.7"
s.summary = "real-time calls based on Sendbird Calls SDK"
s.description = "Sendbird Calls enables real-time calls between users registered within a Sendbird application"
s.homepage = "https://sendbird.com"
s.documentation_url = 'https://sendbird.com/docs/calls'
s.license = "Commercial"
s.authors = { "Young Hwang" => "[email protected]", "Minhyuk Kim" => "[email protected]", "Jaesung Lee" => "[email protected]" }
s.platform = :ios, "9.0"
s.platform = :ios, "11.0"
s.source = { :git => "https://github.com/sendbird/sendbird-calls-ios.git", :tag => "#{s.version}" }
s.ios.vendored_frameworks = "SendBirdCalls.xcframework"
s.ios.frameworks = ["UIKit", "Foundation", "PushKit", "WebRTC", "AVKit", "MediaPlayer", "Network", "CoreTelephony", "VideoToolbox"]
s.requires_arc = true
s.dependency "SendBirdWebRTC", "~> 1.6.0"
s.dependency "SendBirdWebRTC", "~> 1.7.0"
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
end
13 changes: 5 additions & 8 deletions SendBirdCalls.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,32 @@
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>SendBirdCalls.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>BitcodeSymbolMapsPath</key>
<string>BCSymbolMaps</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>SendBirdCalls.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</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
Loading

0 comments on commit 66fc675

Please sign in to comment.