Skip to content

Commit

Permalink
Merge pull request #115 from 100mslive/1.4.2Release
Browse files Browse the repository at this point in the history
1.4.2 Release
  • Loading branch information
pawan-100ms authored Jan 4, 2024
2 parents 8d8da52 + 384d1fb commit eadb36f
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 51 deletions.
82 changes: 41 additions & 41 deletions Example/HMSSDKExample.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions Example/HMSSDKExample/Meeting/HMSSDKInteractor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ final class HMSSDKInteractor: HMSUpdateListener {
videoSettingsBuilder.cameraOrientationLock = .landscape
}

if #available(iOS 16.0, *) {
videoSettingsBuilder.isMultitaskingCameraAccessEnabled = true
}

audioSettingsBuilder.initialMuteState = UserDefaults.standard.publishAudio ? .unmute : .mute
audioSettingsBuilder.audioSource = self.audioSource(for: sdk)

Expand Down
2 changes: 1 addition & 1 deletion Example/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ platform :ios, '13.0'

target 'HMSSDKExample' do
use_frameworks!
pod 'HMSSDK', '1.4.1'
pod 'HMSSDK', '1.4.2'
pod 'HMSHLSPlayerSDK', '0.0.2'
pod 'SwiftyBeaver', '1.9.5'
pod 'Zip', '2.1.2'
Expand Down
8 changes: 4 additions & 4 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PODS:
- HMSBroadcastExtensionSDK (1.0.0)
- HMSHLSPlayerSDK (0.0.2):
- HMSAnalyticsSDK (= 0.0.2)
- HMSSDK (1.4.0):
- HMSSDK (1.4.1):
- HMSAnalyticsSDK (= 0.0.2)
- HMSWebRTC (= 1.0.5116)
- HMSWebRTC (1.0.5116)
Expand All @@ -16,7 +16,7 @@ DEPENDENCIES:
- Eureka (= 5.4.0)
- HMSBroadcastExtensionSDK (= 1.0.0)
- HMSHLSPlayerSDK (= 0.0.2)
- HMSSDK (= 1.4.0)
- HMSSDK (= 1.4.1)
- SwiftyBeaver (= 1.9.5)
- SwiftyGif
- Zip (= 2.1.2)
Expand All @@ -38,12 +38,12 @@ SPEC CHECKSUMS:
HMSAnalyticsSDK: 4d2a88a729b1eb42f3d25f217c28937ec318a5b7
HMSBroadcastExtensionSDK: 0757d80497fddec3952858eb14892fb274f9f3c3
HMSHLSPlayerSDK: 6a54ad4d12f3dc2270d1ecd24019d71282a4f6a3
HMSSDK: 1bfd81ce70d61864cf2496018892d95335164b53
HMSSDK: 6a579cb806d4760cda149002150ff0beab03749b
HMSWebRTC: ae54e9dd91b869051b283b43b14f57d43b7bf8e1
SwiftyBeaver: 84069991dd5dca07d7069100985badaca7f0ce82
SwiftyGif: 93a1cc87bf3a51916001cf8f3d63835fb64c819f
Zip: b3fef584b147b6e582b2256a9815c897d60ddc67

PODFILE CHECKSUM: 50890fdda6c82744ec70156d6ac56ea51c2c8c04
PODFILE CHECKSUM: 92f61fa0184807c9fa024a132c5d15d455f6998b

COCOAPODS: 1.12.1
6 changes: 3 additions & 3 deletions HMSSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'HMSSDK'
s.version = '1.4.1'
s.version = '1.4.2'
s.summary = 'HMS Videoconferencing iOS SDK'

s.description = <<-DESC
Expand All @@ -10,8 +10,8 @@ TODO: Add long description of the pod here.
s.homepage = 'https://github.com/100mslive/100ms-ios-sdk/'
s.license = { :type => 'MIT'}
s.author = { 'Dmitry Fedoseyev' => '[email protected]', 'Yogesh Singh' => '[email protected]', 'Pawan Dixit' => '[email protected]'}
s.source = { :http => 'https://github.com/100mslive/100ms-ios-sdk/releases/download/1.4.1/HMSSDK.xcframework.zip',
:sha256 => '26aff3b0eb7ede275afc8e7f38563d0f250df0ca77524156d7023299e707da8a'
s.source = { :http => 'https://github.com/100mslive/100ms-ios-sdk/releases/download/1.4.2/HMSSDK.xcframework.zip',
:sha256 => '0adaf4cc47c5e3f24ab2347b44be2be9512c928e51029cdf9b735fd2806b65a7'
}
s.ios.deployment_target = '12.0'
s.vendored_frameworks = 'HMSSDK.xcframework'
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "HMSSDK",
url: "https://github.com/100mslive/100ms-ios-sdk/releases/download/1.4.1/HMSSDK.xcframework.zip",
checksum: "26aff3b0eb7ede275afc8e7f38563d0f250df0ca77524156d7023299e707da8a"
url: "https://github.com/100mslive/100ms-ios-sdk/releases/download/1.4.2/HMSSDK.xcframework.zip",
checksum: "0adaf4cc47c5e3f24ab2347b44be2be9512c928e51029cdf9b735fd2806b65a7"
),
.binaryTarget(
name: "WebRTC",
Expand Down

0 comments on commit eadb36f

Please sign in to comment.