-
Notifications
You must be signed in to change notification settings - Fork 7
/
UtilCore.podspec
52 lines (48 loc) · 2.08 KB
/
UtilCore.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
44
45
46
47
48
49
50
51
52
#
# Be sure to run `pod lib lint UtilCore.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'UtilCore'
s.version = '0.0.4'
s.summary = '项目公用基础库'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
TODO: 项目公用基础库,单独模块.
DESC
s.homepage = 'https://github.com/seongbrave/UtilCore'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'seongbrave' => '[email protected]' }
s.source = { :git => 'https://github.com/seongbrave/UtilCore.git', :tag => s.version.to_s }
s.social_media_url = 'http://seongbrave.github.io/'
s.ios.deployment_target = '8.0'
s.source_files = 'UtilCore/**/*.{h,swift}'
s.resource_bundles = {
'UtilCore' => ['UtilCore/**/*.{xcassets,storyboard}']
}
s.frameworks = 'UIKit'
s.dependency 'ModelProtocol', '~> 0.0.1'
s.dependency 'EmptyDataView', '~> 0.0.1'
s.dependency 'RxSwift', '~> 4.1.2' #依赖关系,该项目所依赖的其他库,如果有多个需要填写多个s.dependency
s.dependency 'RxCocoa', '~> 4.1.2'
s.dependency 'CryptoSwift', '~> 0.8.3'
s.dependency 'SwiftyUserDefaults', '~> 3.0.1'
#动画显示
s.dependency 'NVActivityIndicatorView', '~> 4.3.0'
#autolayout的封装
s.dependency 'SnapKit', '~> 4.0.0'
#toast提示框
s.dependency 'Toast-Swift', '~> 3.0.1'
s.dependency 'MJRefresh', '~> 3.1.15.3'
s.dependency 'Kingfisher', '~> 4.6.4'
s.dependency 'MBProgressHUD', '~> 1.1.0'
s.dependency 'URLNavigator', '~> 2.0.4'
s.dependency 'WebViewJavascriptBridge', '~> 6.0.3'
end