Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .changes/align-webrtc-sdk
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
patch type="fixed" "Align WebRTC-SDK to 137.7151.12 and bump iOS deployment target to 16.0"
4 changes: 2 additions & 2 deletions example/ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment this line to define a global platform for your project
platform :ios, '13.0'
platform :ios, '16.0'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
Expand Down Expand Up @@ -43,7 +43,7 @@ post_install do |installer|
# https://stackoverflow.com/questions/63973136/the-ios-deployment-target-iphoneos-deployment-target-is-set-to-8-0-in-flutter
#
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.1'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.0'
#
# Make it compile with M1 macs
#
Expand Down
4 changes: 2 additions & 2 deletions ios/livekit_client.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Pod::Spec.new do |s|
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.platform = :ios, '13.0'
s.platform = :ios, '16.0'
# Flutter.framework does not contain a i386 slice.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
s.swift_version = '5.0'
s.static_framework = true

s.dependency 'Flutter'
s.dependency 'WebRTC-SDK', '137.7151.04'
s.dependency 'WebRTC-SDK', '137.7151.12'
s.dependency 'flutter_webrtc'
end
2 changes: 1 addition & 1 deletion macos/livekit_client.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ Pod::Spec.new do |s|
s.static_framework = true

s.dependency 'FlutterMacOS'
s.dependency 'WebRTC-SDK', '137.7151.04'
s.dependency 'WebRTC-SDK', '137.7151.12'
s.dependency 'flutter_webrtc'
end
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies:
json_annotation: ^4.9.0

# Fix version to avoid version conflicts between WebRTC-SDK pods, which both this package and flutter_webrtc depend on.
flutter_webrtc: 1.3.0
flutter_webrtc: 1.3.1
dart_webrtc: ^1.7.0

dev_dependencies:
Expand Down
Loading