Skip to content

Commit

Permalink
Merge pull request #54 from salemove/release/0.32.0
Browse files Browse the repository at this point in the history
Glia iOS SDK 0.32.0
  • Loading branch information
dukhovnyi authored Dec 23, 2021
2 parents dab6875 + a1fe783 commit 186e5c8
Show file tree
Hide file tree
Showing 20 changed files with 1,645 additions and 25,569 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

## Unreleased

Unreleased: https://github.com/salemove/ios-sdk/compare/0.31.0...master
Unreleased: https://github.com/salemove/ios-sdk/compare/0.32.0...master

## [0.32.0] - 2021-12-23

### Added

- Support for configuration SDK with Site API key

## [0.31.0] - 2021-10-01

Expand Down
3 changes: 2 additions & 1 deletion GliaSDK.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"0.30.0": "https://github.com/salemove/ios-bundle/releases/download/0.30.0/SalemoveSDK.xcframework.zip?alt=https://github.com/salemove/ios-bundle/releases/download/0.29.6/Dependencies.xcframework.zip",
"0.30.1": "https://github.com/salemove/ios-bundle/releases/download/0.30.1/SalemoveSDK.xcframework.zip?alt=https://github.com/salemove/ios-bundle/releases/download/0.29.6/Dependencies.xcframework.zip",
"0.30.2": "https://github.com/salemove/ios-bundle/releases/download/0.30.2/SalemoveSDK.xcframework.zip?alt=https://github.com/salemove/ios-bundle/releases/download/0.29.6/Dependencies.xcframework.zip",
"0.31.0": "https://github.com/salemove/ios-bundle/releases/download/0.31.0/SalemoveSDK.xcframework.zip?alt=https://github.com/salemove/ios-bundle/releases/download/0.29.6/Dependencies.xcframework.zip"
"0.31.0": "https://github.com/salemove/ios-bundle/releases/download/0.31.0/SalemoveSDK.xcframework.zip?alt=https://github.com/salemove/ios-bundle/releases/download/0.29.6/Dependencies.xcframework.zip",
"0.32.0": "https://github.com/salemove/ios-bundle/releases/download/0.32.0/SalemoveSDK.xcframework.zip?alt=https://github.com/salemove/ios-bundle/releases/download/0.32.0/Dependencies.xcframework.zip"
}
28 changes: 26 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,26 @@ let package = Package(
targets: ["GliaSDK"])
],
targets: [
.binaryTarget(
name: "ReactiveSwift",
url: "https://github.com/salemove/glia-ios-podspecs/releases/download/1.0/ReactiveSwift.xcframework.zip",
checksum: "f1322d3e07b01a4f2b1329b7ed43494259fba740c666231422b373ec50dc1e7d"
),
.binaryTarget(
name: "SocketIO",
url: "https://github.com/salemove/glia-ios-podspecs/releases/download/1.0/SocketIO.xcframework.zip",
checksum: "119a21a9d7d0b9a20b0705e5c639cb57cc1d93ee08874a89dd53b8ca23905ad6"
),
.binaryTarget(
name: "Starscream",
url: "https://github.com/salemove/glia-ios-podspecs/releases/download/1.0/Starscream.xcframework.zip",
checksum: "bd400c148711147d78c9c549e05f0ca7b4afdd486f387496080fb5aed8580260"
),
.binaryTarget(
name: "SwiftPhoenixClient",
url: "https://github.com/salemove/glia-ios-podspecs/releases/download/1.0/SwiftPhoenixClient.xcframework.zip",
checksum: "0efab6ac7d72a8242af69095d72d51a12f33438447a7e41f9edf84e15a08c7bb"
),
.binaryTarget(
name: "TwilioVoice",
url: "https://github.com/salemove/ios-bundle/releases/download/0.27.0/TwilioVoice.xcframework.zip",
Expand All @@ -25,13 +45,17 @@ let package = Package(
),
.binaryTarget(
name: "SalemoveSDK",
url: "https://github.com/salemove/ios-bundle/releases/download/0.31.0/SalemoveSDK.xcframework.zip",
checksum: "d02bf87ffca0a42a8c7f4243912bd8bb6b9c12759c8081e6e550895363acb3a9"
url: "https://github.com/salemove/ios-bundle/releases/download/0.32.0/SalemoveSDK.xcframework.zip",
checksum: "2f548182f0a4db0cc6ce96e3617ddcdfc5b2463fbab45c94983753f5ad33f841"
),
.target(
name: "GliaSDK",
dependencies: [
"SalemoveSDK",
"ReactiveSwift",
"SocketIO",
"SwiftPhoenixClient",
"Starscream",
"TwilioVoice",
"WebRTC"
]
Expand Down
11 changes: 5 additions & 6 deletions SalemoveSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SalemoveSDK'
s.version = '0.31.0'
s.version = '0.32.0'
s.summary = 'The Salemove iOS library'
s.description = 'The Salemove iOS library brings the in-person customer experience to iOS devices.'
s.homepage = 'https://github.com/salemove/ios-sdk'
Expand All @@ -13,11 +13,10 @@ Pod::Spec.new do |s|
s.ios.vendored_frameworks = 'SalemoveSDK.xcframework'
s.swift_version = '5.3'

# s.dependency 'Moya', '14.0.0'
# s.dependency 'ReactiveSwift', '6.5.0'
# s.dependency 'SwiftPhoenixClient', '1.2.1'
# s.dependency 'ios-socket-client', '9.2.0'
s.dependency 'ReactiveSwift', '6.5.0-xcf'
s.dependency 'SwiftPhoenixClient', '1.2.1-xcf'
s.dependency 'SocketIO', '9.2.0-xcf'
s.dependency 'Starscream', '3.1.1-xcf'
s.dependency 'glia-webrtc/bitcode', '0.0.3'
# s.dependency 'Macaw', '0.9.7'
s.dependency 'TwilioVoice', '6.2.0'
end
12 changes: 6 additions & 6 deletions SalemoveSDK.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,29 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>SalemoveSDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>x86_64</string>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-x86_64-simulator</string>
<key>LibraryPath</key>
<string>SalemoveSDK.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
Loading

0 comments on commit 186e5c8

Please sign in to comment.