-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScoreEffectUI.podspec
More file actions
25 lines (23 loc) · 992 Bytes
/
ScoreEffectUI.podspec
File metadata and controls
25 lines (23 loc) · 992 Bytes
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
Pod::Spec.new do |spec|
spec.name = "ScoreEffectUI"
spec.version = "1.0.3"
spec.summary = "ScoreEffectUI"
spec.description = "ScoreEffectUI"
spec.homepage = "https://github.com"
spec.license = "MIT"
spec.author = { "ZYP" => "zhuyuping@agora.io" }
spec.source = { :git => "https://github.com/zhuyuping/ScoreEffectUI.git", :tag => '1.0.3' }
spec.source_files = "Class/**/*.swift"
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.resource_bundles = {
'ScoreEffectUIBundle' => ['Resources/*.xcassets']
}
spec.test_spec 'Tests' do |test_spec|
test_spec.source_files = "Tests/**/*.{swift}"
test_spec.frameworks = 'UIKit','Foundation'
end
end