-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
executable file
·51 lines (43 loc) · 1.39 KB
/
Copy pathPodfile
File metadata and controls
executable file
·51 lines (43 loc) · 1.39 KB
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
platform :ios, '8.0'
use_frameworks!
pod 'MBProgressHUD'
pod 'SnapKit'
pod 'Alamofire'
pod 'SwiftyJSON' # , :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
pod 'XCGLogger'
pod 'ObjectMapper' #, :git => 'https://github.com/Hearst-DD/ObjectMapper.git'
pod 'ReactiveCocoa', '= 4.0.2-alpha-3'
pod 'Moya/ReactiveCocoa'
#pod 'IDAlertController'
pod 'FBAnnotationClustering'
#https://github.com/Haneke/HanekeSwift 缓存
pod 'HanekeSwift'
# pod 'SDWebImage'
#pod 'SwiftColors' #, :git=>'https://github.com/xxhank/SwiftColors.git'
pod 'SwiftHEXColors'
# pod 'ExSwift'
pod 'UITableView+FDTemplateLayoutCell'
#pod 'ReactiveCocoa' 监听 对象值变化
pod 'PagingMenuController', :git=>"https://github.com/xxhank/PagingMenuController.git"
pod 'SwiftTask'
pod 'SwiftTryCatch', :git => 'https://github.com/ravero/SwiftTryCatch.git'
pod "PKHUD"
pod 'TagListView', :git => 'https://github.com/xxhank/TagListView.git'
pod 'KMPlaceholderTextView'
pod 'IQKeyboardManagerSwift'
target :PicMapIOSTests do
pod 'Quick'
pod 'Nimble'
end
target :PicMapIOSUITests do
#pod 'JAMTestHelper'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'PagingMenuController'
target.build_configurations.each do |config|
config.build_settings['OTHER_LDFLAGS'] ||= ['$(inherited)', '-framework "SnapKit"']
end
end
end
end