-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathPodfile
executable file
·103 lines (93 loc) · 2.54 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '12.0'
target 'Candy' do
use_modular_headers!
#use_frameworks!
inhibit_all_warnings!
# OC
# https://github.com/forkingdog/FDFullscreenPopGesture
pod 'FDFullscreenPopGesture'
# https://github.com/forkingdog/UITableView-FDTemplateLayoutCell
pod 'UITableView+FDTemplateLayoutCell'
# page
# https://github.com/pujiaxin33/JXCategoryView
pod 'JXCategoryView'
# Video Player
# https://github.com/renzifeng/ZFPlayer
pod 'ZFPlayer'
pod 'ZFPlayer/ijkplayer'
pod 'ZFPlayer/ControlView'
# Search
# https://github.com/ko1o/PYSearch
pod 'PYSearch'
# Refresh
# https://github.com/CoderMJLee/MJRefresh
pod 'MJRefresh'
# Swift
# RxSwift
# https://github.com/Pircate/RxNetwork
pod 'RxNetwork'
# https://github.com/Pircate/RxNetwork
pod 'RxNetwork/Cacheable'
# https://github.com/InsectQY/RxActivityIndicator
pod 'RxActivityIndicator'
# https://github.com/RxSwiftCommunity/NSObject-Rx
pod 'NSObject+Rx'
# https://github.com/RxSwiftCommunity/RxDataSources
pod 'RxDataSources'
# https://github.com/InsectQY/RxURLNavigator
pod 'RxURLNavigator'
# https://github.com/RxSwiftCommunity/RxOptional
pod 'RxOptional'
# https://github.com/srv7/RxMJ
pod 'RxMJ'
# https://github.com/RxSwiftCommunity/RxReachability
pod 'RxReachability'
# https://github.com/RxSwiftCommunity/RxSwiftExt
pod 'RxSwiftExt'
# UIImage Download
# https://github.com/onevcat/Kingfisher
pod 'Kingfisher'
# https://github.com/Yeatse/KingfisherWebP
pod "KingfisherWebP"
# Codable
# https://github.com/Pircate/CleanJSON
pod 'CleanJSON'
# Keyboard
# https://github.com/hackiftekhar/IQKeyboardManager
pod 'IQKeyboardManagerSwift'
# HUD
# https://github.com/ninjaprox/NVActivityIndicatorView
pod 'NVActivityIndicatorView'
# Transitions
# https://github.com/HeroTransitions/Hero
pod 'Hero'
# https://github.com/SebastianBoldt/Jelly
pod 'Jelly'
# UserDefaults
# https://github.com/nmdias/DefaultsKit
pod 'DefaultsKit'
# Code
# https://github.com/realm/SwiftLint
pod 'SwiftLint'
# Resources
# https://github.com/mac-cain13/R.swift
pod 'R.swift'
# Toast
# https://github.com/scalessec/Toast-Swift
pod 'Toast-Swift'
# Placeholder
# https://github.com/InsectQY/EmptyDataSetExtension
pod 'EmptyDataSetExtension/RxSwift'
# https://github.com/InsectQY/QYUINavigationBarExtension
pod 'QYUINavigationBarExtension'
# https://github.com/InsectQY/MoyaResultValidate
pod 'MoyaResultValidate'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end