-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScreenMeetSDK.podspec
34 lines (27 loc) · 1.17 KB
/
ScreenMeetSDK.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
#
Pod::Spec.new do |s|
s.name = 'ScreenMeetSDK'
s.version = '1.1.1'
s.summary = 'ScreenMeetSDK enables ScreenMeet\'s realtime platform in your app.'
s.description = <<-DESC
ScreenMeet provides a platform that allows you to build realtime solutions for your application.
DESC
s.homepage = 'https://github.com/screenmeet/screenmeet-sdk-ios'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'ScreenMeet' => 'sdksupport@screenmeet.com' }
s.source = { :git => 'https://github.com/screenmeet/screenmeet-sdk-ios.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '12.0'
s.source_files = 'ScreenMeetSDK/Classes/**/*'
s.resource_bundles = {
'ScreenMeetResource' => ['ScreenMeetSDK/Resources/*.{xib,storyboard,xcassets}']
}
s.dependency 'Socket.IO-Client-Swift', '~> 15.2'
s.dependency 'GoogleWebRTC', '~> 1.1'
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64',
'ENABLE_BITCODE' => 'NO'
}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end