-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
61 lines (41 loc) · 1007 Bytes
/
Podfile
File metadata and controls
61 lines (41 loc) · 1007 Bytes
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
platform :ios, '13.0'
target 'RickAndMorty Guide' do
use_frameworks!
#Moya
pod 'Moya'
# Reactive & Bond
pod 'Bond'
pod 'ReactiveKit'
#SnapKit
pod 'SnapKit', '~> 5.0.0'
# Reachability
pod 'ReachabilitySwift'
# Formatter
pod 'AnyFormatKit'
# Localization strings
pod 'Localize' , '~> 2.3.0'
# lottie-ios
pod 'lottie-ios'
#Keyboard
pod 'IQKeyboardManagerSwift'
# SkeletonView
pod 'SkeletonView'
# SwiftyBeaver Logger
pod 'SwiftyBeaver'
# Download Image
pod 'Kingfisher'
# for CollectionView
pod 'CollectionViewCenteredFlowLayout'
pod 'DGCollectionViewLeftAlignFlowLayout'
# EntropyString
pod 'EntropyString', '~> 3.0'
# DGCollectionViewLeftAlignFlowLayout
pod 'DGCollectionViewLeftAlignFlowLayout'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end