Skip to content

Commit 32594c2

Browse files
committed
fix
1 parent 9701d52 commit 32594c2

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

Comma.framework/Comma

0 Bytes
Binary file not shown.

Comma/1.0.4/Comma.podspec

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Be sure to run `pod lib lint Comma.podspec' to ensure this is a
2+
# valid spec before submitting.
3+
#
4+
# Any lines starting with a # are optional, but their use is encouraged
5+
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
6+
#
7+
8+
Pod::Spec.new do |s|
9+
10+
s.name = 'Comma'
11+
s.version = '1.0.4'
12+
s.summary = 'Comma'
13+
s.description = <<-DESC
14+
Comma is an SDK for audio and video calls.
15+
DESC
16+
s.homepage = 'http://develotex.io'
17+
s.source = { :git => 'https://github.com/develotex/comma_ios.git', :tag => s.version }
18+
s.author = { 'develotex' => '[email protected]' }
19+
s.license = { :type => 'Commercial', :file => 'LICENSE' }
20+
s.platform = :ios, '13.0'
21+
s.swift_version = '5.0'
22+
s.vendored_frameworks = 'Comma.framework'
23+
24+
s.frameworks = 'UIKit'
25+
s.dependency 'GoogleWebRTC', '~> 1.1'
26+
s.dependency 'SwiftSignalRClient'
27+
28+
29+
# s.resource_bundles = {
30+
# 'Comma' => ['Comma.framework/Comma.bundle/*.png']
31+
# }
32+
33+
s.source_files = 'Comma.framework/Headers/**/*.{h,m,swift}'
34+
s.public_header_files = 'Comma.framework/Headers/**/*.{h,m,swift}'
35+
36+
37+
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
38+
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}
39+
40+
end

0 commit comments

Comments
 (0)