-
Notifications
You must be signed in to change notification settings - Fork 3
/
RCSceneVoiceRoom.podspec
36 lines (29 loc) · 1.15 KB
/
RCSceneVoiceRoom.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
Pod::Spec.new do |s|
# 1 - Info
s.name = 'RCSceneVoiceRoom'
s.version = '0.0.4.5'
s.summary = 'Scene Voice Room'
s.description = "Scene Voice Room module"
s.homepage = 'https://github.com/rongcloud'
s.license = { :type => "Copyright", :text => "Copyright 2022 RongCloud" }
s.author = { 'shaoshuai' => 'shaoshuai@rongcloud.cn' }
s.source = { :git => 'https://github.com/rongcloud-community/rongcloud-scene-voice-room-ios.git', :tag => s.version.to_s }
# 2 - Version
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
s.static_framework = true
# 3 - config
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64',
'VALID_ARCHS' => 'arm64 armv7 x86_64',
'SWIFT_COMPILATION_MODE' => 'Incremental',
'OTHER_SWIFT_FLAGS' => '-Xfrontend -enable-dynamic-replacement-chaining',
}
# 4 - source
s.source_files = 'RCSceneVoiceRoom/Classes/**/*'
# 5 - dependency
s.dependency 'Pulsator'
s.dependency 'RCVoiceRoomLib'
s.dependency 'RCSceneRoom/RCSceneRoom', '>= 0.0.4.5'
s.dependency 'RCSceneRoom/RCSceneAnalytics'
end