-
Notifications
You must be signed in to change notification settings - Fork 0
/
MirrorflyWebrtc.podspec
18 lines (18 loc) · 1.1 KB
/
MirrorflyWebrtc.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'MirrorflyWebrtc'
s.version = "1.1.5"
s.summary = 'This repo is to access WebRTC framework and methods'
s.homepage = 'https://github.com/MirrorFly/MirrorflyWebrtc'
s.author = { 'Gowtham' => '[email protected]','Vanitha' => '[email protected]', }
s.license = { :type => 'Commercial', :file => 'LICENSE' }
s.platform = :ios, 12.1
s.source = { :git => 'https://github.com/MirrorFly/MirrorflyWebrtc.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.requires_arc = true
s.ios.deployment_target = '12.1'
s.ios.vendored_frameworks = "SDK/WebRTC.xcframework"
s.public_header_files = ['SDK/WebRTC.xcframework/ios-arm64-simulator/WebRTC.framework/Headers/**/*.h', 'SDK/WebRTC.xcframework/ios-arm64/WebRTC.framework/Headers/**/*.h']
s.documentation_url = 'https://www.mirrorfly.com/docs/chat/ios/v2/quick-start/'
s.ios.frameworks = ['UIKit']
s.pod_target_xcconfig = { 'VALID_ARCHS' => 'armv7 arm64 x86_64', 'IPHONEOS_DEPLOYMENT_TARGET' => '12.1',}
end