-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodfile
More file actions
63 lines (51 loc) · 1.56 KB
/
Copy pathPodfile
File metadata and controls
63 lines (51 loc) · 1.56 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
52
53
54
55
56
57
58
59
60
61
62
63
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
# ignore all warnings from all pods
inhibit_all_warnings!
target 'tingting' do
use_frameworks!
# ignore all warnings from all pods
inhibit_all_warnings!
pod 'Firebase/Analytics'
#pod 'RxSwift', '~> 5'
pod 'RxCocoa', '~> 5'
pod 'RxSwiftExt', '~> 5'
pod 'RxDataSources', '~> 4.0'
pod 'RxViewController'
pod 'DropDown', '~>2.3.13'
pod 'Hero', '~> 1.4.0'
pod 'SnapKit', '~> 5.0.0'
pod 'lottie-ios', '~> 3.1.0'
pod 'SwiftyBeaver', '~> 1.7.0'
pod 'Kingfisher', '~> 5.0'
pod 'NotificationBannerSwift', '~> 3.0.0'
pod 'WSTagsField', '~> 5.2'
pod 'M13Checkbox', '~> 3.4.0'
pod 'TextFieldEffects', '~> 1.6.0'
pod 'BonMot', '~> 5.4'
pod 'RxKakaoSDK', '~> 2.0.0-beta.3'
target 'tingtingTests' do
inherit! :search_paths
# Pods for testing
end
target 'tingtingUITests' do
inherit! :search_paths
# Pods for testing
end
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
# Workaround for @IBDesignable (https://github.com/CocoaPods/CocoaPods/issues/5334)
#post_install do |installer|
# installer.pods_project.targets.each do |target|
# next if target.product_type == "com.apple.product-type.bundle"
# target.build_configurations.each do |config|
# config.build_settings['CONFIGURATION_BUILD_DIR'] = '$PODS_CONFIGURATION_BUILD_DIR'
# end
# end
#end