-
-
Notifications
You must be signed in to change notification settings - Fork 461
/
Podfile
65 lines (53 loc) · 1.38 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
platform:ios,'13.0'
inhibit_all_warnings!
use_modular_headers!
def pods
pod 'SnapKit'
pod 'Material'
pod 'KVOController'
pod 'SVProgressHUD'
pod 'FDFullscreenPopGesture'
pod 'Moya/RxSwift'
pod 'ObjectMapper'
pod 'SwiftyJSON'
pod 'DeviceKit'
pod 'DefaultsKit', :git => 'https://github.com/nmdias/DefaultsKit'
# pod 'IceCream'
pod 'RealmSwift'
pod 'CryptoSwift'
pod 'IQKeyboardManagerSwift'
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxGesture'
pod 'RxDataSources'
pod 'NSObject+Rx'
pod 'MJRefresh'
pod 'Kingfisher'
pod 'MercariQRScanner', :git => 'https://github.com/Finb/QRScanner'
pod 'DropDown'
pod 'PLCrashReporter'
pod 'SwiftyStoreKit'
end
target 'Bark' do
pods
target 'BarkTests' do
inherit! :search_paths
end
end
target 'NotificationServiceExtension' do
# pod 'IceCream'
pod 'RealmSwift'
pod 'Kingfisher'
pod 'CryptoSwift'
pod 'SwiftyJSON'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 13.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end