Files
client-sdk-flutter/ios/livekit_client.podspec
Hiroshi Horie b58f55ad5a
Some checks failed
Publish to pub.dev / publish (push) Has been cancelled
v2.6.2 (#976)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

* **Release**
  * Version bumped to 2.6.2

* **New Features**
  * Bitrate priority control APIs

* **Bug Fixes**
  * Windows: stop camera after unpublishing video track
  * Keep mute state in sync with server
  * Fix example prejoin device dropdown handling

* **Chores**
  * Mark LocalVideoTrack constructor as internal
  * Update protobuf to v6.0.0
  * Misc. packaging/documentation updates
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2026-02-02 12:29:08 +08:00

22 lines
915 B
Ruby

Pod::Spec.new do |s|
s.name = 'livekit_client'
s.version = '2.6.2'
s.summary = 'Open source platform for real-time audio and video.'
s.description = 'Open source platform for real-time audio and video.'
s.homepage = 'https://livekit.io/'
s.license = { :file => '../LICENSE' }
s.author = { 'LiveKit' => 'contact@livekit.io' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.platform = :ios, '13.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 'flutter_webrtc'
end