-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComma.podspec
40 lines (31 loc) · 1.32 KB
/
Comma.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
35
36
37
38
39
40
# Be sure to run `pod lib lint Comma.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Comma'
s.version = '1.0.0'
s.summary = 'Comma'
s.description = <<-DESC
Comma is an SDK for audio calls.
DESC
s.homepage = 'http://develotex.io'
s.source = { :git => 'https://github.com/develotex/comma_ios_audio', :tag => s.version }
s.author = { 'develotex' => 'develotex@gmail.com' }
s.license = { :type => 'Commercial', :file => 'LICENSE' }
s.platform = :ios, '13.0'
s.swift_versions = ['5.0', '5.1', '5.2', '5.3', '5.4', '5.5','5.6','5']
s.vendored_frameworks = 'Comma.framework'
s.frameworks = 'UIKit'
s.dependency 'GoogleWebRTC', '~> 1.1'
s.dependency 'SwiftSignalRClient'
# s.resource_bundles = {
# 'Comma' => ['Comma.framework/Comma.bundle/*.png']
# }
s.source_files = 'Comma.framework/Headers/**/*.{h,m,swift}'
s.public_header_files = 'Comma.framework/Headers/**/*.{h,m,swift}'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}
end