forked from AgoraIO-Usecase/AgoraChat-CallKit-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAgoraChatCallKit.podspec
40 lines (39 loc) · 1.68 KB
/
AgoraChatCallKit.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
Pod::Spec.new do |s|
s.name = 'AgoraChatCallKit'
s.version = '1.0.9'
s.summary = 'A AgoraChat Call UIKit'
s.description = <<-DESC
‘‘AgoraChatCallKit is a UI library that implements audio and video calls by using Agora Chat and Agora RTC. Using this SDK, you can make one-to-one audio and video calls and multi-party audio and video calls.’’
DESC
s.homepage = 'https://github.com/AgoraIO-Usecase/AgoraChat-CallKit-ios'
s.license = 'MIT'
s.author = { 'agora' => '[email protected]' }
s.source = { :git => 'https://github.com/AgoraIO-Usecase/AgoraChat-CallKit-ios.git', :tag => s.version.to_s }
s.frameworks = 'UIKit'
s.libraries = 'stdc++'
s.ios.deployment_target = '10.0'
s.source_files = 'Classes/**/*.{h,m}'
s.public_header_files = [
'Classes/Process/AgoraChatCallManager.h',
'Classes/Utils/AgoraChatCallDefine.h',
'Classes/Utils/AgoraChatCallError.h',
'Classes/Store/AgoraChatCallConfig.h',
'Classes/AgoraChatCallKit.h',
]
s.static_framework = true
s.resource_bundle = {
'AgoraChatCallKit' => [
'Assets/AgoraChatCallKit.xcassets',
'Assets/music.mp3',
'Classes/*.lproj'
]
}
s.dependency 'Agora_Chat_iOS'
s.dependency 'Masonry'
s.dependency 'AgoraRtcEngine_iOS/RtcBasic','~> 3.6.3'
s.dependency 'SDWebImage'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64',
'VALID_ARCHS' => 'arm64 armv7 x86_64'
}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end