From d7a68b34af8ab2c5e6312458f75f0795ae9bd862 Mon Sep 17 00:00:00 2001 From: Hiroshi Horie <548776+hiroshihorie@users.noreply.github.com> Date: Thu, 4 Aug 2022 08:30:09 +0900 Subject: [PATCH] Cocoapods (#110) * joinedAt for ObservableParticipant * first * adjustments * update podspec --- LiveKit.podspec | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 LiveKit.podspec diff --git a/LiveKit.podspec b/LiveKit.podspec new file mode 100644 index 000000000..dce04bd95 --- /dev/null +++ b/LiveKit.podspec @@ -0,0 +1,29 @@ + +Pod::Spec.new do |spec| + + spec.name = 'LiveKit' + spec.version = '1.0.2' + spec.summary = 'LiveKit Swift Client SDK. Easily build live audio or video experiences into your mobile app, game or website.' + spec.homepage = 'https://github.com/livekit/client-sdk-swift' + spec.license = { :type => 'Apache 2.0', :file => 'LICENSE' } + spec.author = 'LiveKit' + + spec.ios.deployment_target = '13.0' + spec.osx.deployment_target = '10.15' + + spec.swift_versions = ['4.2', '5'] + spec.source = { :git => 'https://github.com/livekit/client-sdk-swift.git', :tag => '1.0.2' } + + # spec.source_files = 'Sources/**/*' + # spec.source_files = 'Sources/LiveKit/**/*.{swift}', + # 'Sources/CHeaders/**/*.{h,modulemap}' + + spec.dependency 'WebRTC-SDK', '~> 104.5112.02' + spec.dependency 'SwiftProtobuf' + spec.dependency 'PromisesSwift' + spec.dependency 'Logging' + + # spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } + # spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } + +end