-
Notifications
You must be signed in to change notification settings - Fork 5
/
AgoraLyricsScore.podspec
29 lines (27 loc) · 1.26 KB
/
AgoraLyricsScore.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
Pod::Spec.new do |spec|
spec.name = "AgoraLyricsScore"
spec.version = "2.1.1"
spec.summary = "AgoraLyricsScore"
spec.description = "AgoraLyricsScore"
spec.homepage = "https://github.com/AgoraIO-Community"
spec.license = "MIT"
spec.author = { "ZYQ" => "[email protected]" }
spec.source = { :git => "https://github.com/AgoraIO-Community/LrcView-iOS.git", :tag => '2.1.1' }
spec.source_files = ["AgoraLyricsScore/Class/**/*.swift", "AgoraLyricsScore/Class/AL/*"]
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 'Zip', '2.1.2'
spec.resource_bundles = {
'AgoraLyricsScoreBundle' => ['AgoraLyricsScore/Resources/*.xcassets']
}
spec.test_spec 'Tests' do |test_spec|
test_spec.source_files = "AgoraLyricsScore/Tests/**/*.{swift}"
test_spec.resource = "AgoraLyricsScore/Tests/Resource/*"
test_spec.frameworks = 'UIKit','Foundation'
test_spec.requires_app_host = true
end
end