-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathTUILiveKit.podspec
More file actions
58 lines (48 loc) · 1.87 KB
/
Copy pathTUILiveKit.podspec
File metadata and controls
58 lines (48 loc) · 1.87 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Pod::Spec.new do |spec|
spec.name = 'TUILiveKit'
spec.version = '1.0.0'
spec.platform = :ios
spec.ios.deployment_target = '14.0'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.homepage = 'https://trtc.io/'
spec.documentation_url = 'https://trtc.io/document'
spec.authors = 'trtc.io'
spec.summary = 'trtc.io for Live streaming Solution..'
spec.static_framework = true
spec.xcconfig = { 'VALID_ARCHS' => 'armv7 arm64 x86_64' }
spec.swift_version = '5.0'
spec.source = { :path => './' }
spec.dependency 'SnapKit'
spec.dependency 'TUICore'
spec.dependency 'Kingfisher'
spec.dependency "MJRefresh"
spec.dependency 'AtomicX'
spec.dependency 'TXIMSDK_Plus_iOS_XCFramework', '>= 8.7.7021'
spec.default_subspec = 'Professional'
spec.subspec 'Professional' do |professional|
professional.dependency 'RTCRoomEngine/Professional'
professional.dependency 'AtomicXCore'
professional.source_files = 'Sources/**/*.{swift,h,m}', 'VideoLiveKit.swift', 'VoiceRoomKit.swift', 'VoiceRoomDefine.swift'
professional.exclude_files = 'Sources/KTV/**/*'
professional.resource_bundles = {
'TUILiveKitBundle' => [
'Resources/*.xcassets',
'Resources/Localized/**/*.xcstrings',
'Resources/Shaders/**/*.metal',
]
}
end
spec.subspec 'TRTC' do |trtc|
trtc.dependency 'RTCRoomEngine/TRTC'
trtc.dependency 'AtomicXCore'
trtc.source_files = 'Sources/**/*.{swift,h,m}', 'VideoLiveKit.swift', 'VoiceRoomKit.swift', 'VoiceRoomDefine.swift'
trtc.exclude_files = 'Sources/KTV/**/*'
trtc.resource_bundles = {
'TUILiveKitBundle' => [
'Resources/*.xcassets',
'Resources/Localized/**/*.xcstrings',
'Resources/Shaders/**/*.metal',
]
}
end
end