-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCZKit.podspec
43 lines (35 loc) · 1.22 KB
/
CZKit.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
39
40
41
42
43
Pod::Spec.new do |spec|
spec.name = "CZKit"
spec.version = "0.0.2"
spec.summary = "Swift 工具箱"
spec.description = <<-DESC
TODO: Swift 工具箱.
DESC
spec.homepage = "https://github.com/lczalh/CZKit"
spec.license = "MIT"
spec.author = { "lczalh" => "[email protected]" }
spec.ios.deployment_target = "12.0"
spec.swift_version = ['5.0']
spec.source = { :git => "https://github.com/lczalh/CZKit.git", :tag => spec.version.to_s }
spec.subspec 'CZCore' do |cz|
cz.source_files = 'CZKit/ChainKit', 'CZKit/Manage', 'CZKit/Extension'
end
spec.subspec 'CZUi' do |cz|
cz.source_files = 'CZKit/ChainKit+SnapKit', 'CZKit/Ui'
cz.dependency 'SnapKit', '~> 5.0.1'
cz.dependency 'CZKit/CZCore'
end
spec.subspec 'CZMJRefreshExtension' do |cz|
cz.source_files = 'CZKit/MJRefresh'
cz.dependency 'MJRefresh', '~> 3.6.1'
end
spec.subspec 'CZKingfisherExtension' do |cz|
cz.source_files = 'CZKit/Kingfisher'
cz.dependency 'Kingfisher', '~> 7.0.0'
end
spec.subspec 'CZHud' do |cz|
cz.source_files = 'CZKit/Hud'
cz.dependency 'SVProgressHUD', '~> 2.2.5'
end
spec.frameworks = 'UIKit', 'Foundation', 'WebKit', 'Photos', 'AudioToolbox', 'AppTrackingTransparency', 'AdSupport'
end