-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
72 lines (54 loc) · 3.01 KB
/
Podfile
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
target 'SwiftyFramework' do
use_frameworks!
inhibit_all_warnings!
# Rx 受限于Moya暂时未更新至6.1.0
pod 'RxSwift', '~> 5.0' # https://github.com/ReactiveX/RxSwift
pod 'RxCocoa', '~> 5.0'
pod 'RxSwiftExt', '~> 5.0' # https://github.com/RxSwiftCommunity/RxSwiftExt
pod 'NSObject+Rx', '~> 5.0' # https://github.com/RxSwiftCommunity/NSObject-Rx
pod 'RxDataSources', '~> 4.0' # https://github.com/RxSwiftCommunity/RxDataSources
pod 'RxGesture', '~> 3.0' # https://github.com/RxSwiftCommunity/RxGesture
pod 'RxWebKit', '~> 1.0' # https://github.com/RxSwiftCommunity/RxWebKit
pod 'RxReachability', '1.1.0' # https://github.com/RxSwiftCommunity/RxReachability
# Networking
pod 'Alamofire', '5.4.2' # https://github.com/Alamofire/Alamofire
pod 'Moya/RxSwift', '14.0' # https://github.com/Moya/Moya
pod 'MoyaSugar/RxSwift' # https://github.com/devxoul/MoyaSugar
# JSON
pod 'Moya-ObjectMapper/RxSwift' # https://github.com/bmoliveira/Moya-ObjectMapper
# 日志
pod 'CocoaLumberjack/Swift', '3.6.0' # https://github.com/CocoaLumberjack/CocoaLumberjack
# UI
pod 'SnapKit', '~> 5.0' # https://github.com/SnapKit/SnapKit
pod 'Kingfisher', '~> 5.0' # https://github.com/onevcat/Kingfisher
pod 'DZNEmptyDataSet', '~> 1.8.1' # https://github.com/dzenbot/DZNEmptyDataSet
pod 'KafkaRefresh', '~> 1.4.7' # https://github.com/OpenFeyn/KafkaRefresh
pod 'IQKeyboardManagerSwift', '~> 6.0' # https://github.com/hackiftekhar/IQKeyboardManager
pod 'Toast-Swift' # https://github.com/scalessec/Toast-Swift
pod 'Hero', '~> 1.4.0' # https://github.com/lkzhao/Hero
pod 'FSPagerView', '~> 0.8.3' # https://github.com/WenchaoD/FSPagerView
# Code Quality
pod 'Then' # https://github.com/devxoul/Then
pod 'SwifterSwift', '~> 5.0' # https://github.com/SwifterSwift/SwifterSwift
pod 'DeviceKit', '~> 2.0' # https://github.com/devicekit/DeviceKit
pod 'R.swift', '~> 5.0.0' # https://github.com/mac-cain13/R.swift
# Social
pod 'MonkeyKing', '~> 1.16.0' # https://github.com/nixzhu/MonkeyKing
end
target 'SwiftyFrameworkTests' do
pod 'Quick', '~> 2.0' # https://github.com/Quick/Quick
pod 'Nimble', '~> 8.0' # https://github.com/Quick/Nimble
pod 'RxAtomic', :modular_headers => true
pod 'RxBlocking', '~> 5.0' # https://github.com/ReactiveX/RxSwift
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['ENABLE_TESTABILITY'] = 'YES'
config.build_settings['SWIFT_VERSION'] = '5.0'
end
end
end