forked from devMEremenko/XcodeBenchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
75 lines (63 loc) · 1.67 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
source = 'https://github.com/CocoaPods/Specs.git'
minimum_target = '14.5'
platform :ios, minimum_target
target 'XcodeBenchmark' do
use_frameworks!
inhibit_all_warnings!
# Firebase
pod 'Firebase/Database'
pod 'Firebase/RemoteConfig'
pod 'Firebase/Crashlytics'
pod 'Firebase/Analytics'
pod 'Firebase/Messaging'
pod 'FirebaseFirestoreSwift'
pod 'Firebase/Storage'
pod 'Firebase/Performance'
# Networking
pod 'AFNetworking', '~> 4.0'
pod 'SDWebImage', '~> 5.0'
pod 'Moya', '~> 14.0'
pod 'Starscream', '~> 4.0.0'
# Core
pod 'SwiftyJSON', '~> 4.0'
pod 'Realm', '~> 5.3.4'
pod 'MagicalRecord', :git => 'https://github.com/magicalpanda/MagicalRecord'
pod 'RxBluetoothKit', :git => 'https://github.com/i-mobility/RxBluetoothKit.git', :tag => '7.0.2'
pod 'ReactiveCocoa', '~> 10.1'
pod 'CryptoSwift', '~> 1.4.0'
pod 'R.swift.Library'
pod 'ObjectMapper'
pod 'TRON', '~> 5.0.0'
pod 'DTCollectionViewManager', '~> 8.0.0'
pod 'DTTableViewManager', '~> 8.0.0'
pod 'Ariadne'
pod 'LoadableViews'
pod 'SwiftDate', '~> 5.0'
pod 'SwiftyBeaver'
# UI
pod 'Hero'
pod 'SVProgressHUD'
pod 'Eureka', '~> 5.3.2'
pod 'IQKeyboardManagerSwift'
pod 'Macaw', '0.9.7'
# Layout
pod 'SnapKit', '~> 5.0.0'
pod 'Masonry'
# Google
pod 'GoogleMaps'
pod 'GooglePlaces'
pod 'Google-Mobile-Ads-SDK'
pod 'GoogleSignIn'
# Social
pod 'VK-ios-sdk'
pod 'FacebookCore'
pod 'FacebookLogin'
pod 'FacebookShare'
end
post_install do |pi|
pi.pods_project.targets.each do |t|
t.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = minimum_target
end
end
end