-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAgoraTranscriptSubtitle.podspec
38 lines (34 loc) · 1.76 KB
/
AgoraTranscriptSubtitle.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
Pod::Spec.new do |spec|
spec.name = "AgoraTranscriptSubtitle"
spec.version = "1.0.0"
spec.summary = "AgoraTranscriptSubtitle"
spec.description = "AgoraTranscriptSubtitle"
spec.homepage = "https://github.com/AgoraIO-Community"
spec.license = "MIT"
spec.author = { "ZYP" => "[email protected]" }
spec.source = { :git => "https://github.com/AgoraIO-Community/TranscriptionWidget-iOS.git", :tag => '1.0.0' }
spec.source_files = ["*/Class/*.swift", "*/Class/Machine/*.swift", "*/Class/Other/**/*", "*/Class/Views/*", "*/Class/Models/*", "*/Class/Utils/*"]
spec.public_header_files = "*/Class/**/*.h"
spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64', 'DEFINES_MODULE' => 'YES' }
spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64', 'DEFINES_MODULE' => 'YES' }
spec.ios.deployment_target = '10.0'
spec.swift_versions = "5.0"
spec.requires_arc = true
spec.dependency 'AgoraComponetLog', "~> 0.0.3"
spec.dependency 'Protobuf', '3.28.2'
spec.subspec 'Machine' do |subspec|
subspec.source_files = ["*/Class/Machine/*.swift", "*/Class/Other/**/*", "*/Class/Models/*", "*/Class/Utils/*"]
subspec.test_spec 'Tests' do |test_spec|
test_spec.source_files = "AgoraTranscriptSubtitle/Tests/**/*.{swift}"
test_spec.resource = "AgoraTranscriptSubtitle/Tests/Resource/*"
test_spec.frameworks = 'UIKit','Foundation'
test_spec.requires_app_host = true
end
end
spec.test_spec 'Tests' do |test_spec|
test_spec.source_files = "AgoraTranscriptSubtitle/Tests/**/*.{swift}"
test_spec.resource = "AgoraTranscriptSubtitle/Tests/Resource/*"
test_spec.frameworks = 'UIKit','Foundation'
test_spec.requires_app_host = true
end
end