-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPodfile
147 lines (106 loc) · 3.37 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
use_frameworks!
# ignore all warnings from all pods
inhibit_all_warnings!
project 'Commun.xcodeproj'
project 'cyberSwift/CyberSwift.xcodeproj'
def common_pods
pod 'RxDataSources', '~> 3.0'
pod 'Crashlytics'
pod 'Amplitude-iOS'
end
def extensions_pods
pod 'RxSwift'
pod 'RxCocoa'
end
def common_pods_commun
common_pods
extensions_pods
pod 'Fabric'
pod 'Firebase/Analytics'
pod 'Firebase/Core'
pod 'Firebase/Messaging'
pod 'AppsFlyerFramework'
pod 'PureLayout'
pod 'SDWebImage'
pod 'SDWebImageWebPCoder'
pod 'Action'
pod 'SwiftyGif', :git => "https://github.com/communcom/SwiftyGif.git"
pod 'SwifterSwift/SwiftStdlib', :git => "https://github.com/communcom/SwifterSwift.git" # Standard Library Extensions
pod 'SwifterSwift/Foundation', :git => "https://github.com/communcom/SwifterSwift.git" # Foundation Extensions
pod 'SwifterSwift/UIKit', :git => "https://github.com/communcom/SwifterSwift.git" # UIKit Extensions
pod 'MBProgressHUD', '~> 1.2.0'
pod 'TLPhotoPicker'
pod 'PinCodeInputView'
pod 'PhoneNumberKit', '~> 2.6'
pod 'ASSpinnerView'
pod 'ListPlaceholder', :git => "https://github.com/communcom/ListPlaceholder.git"
pod 'QRCodeReaderViewController', '~> 4.0.2'
pod 'THPinViewController', :git => "https://github.com/communcom/THPinViewController.git", :branch => "commun"
pod 'ImageViewer.swift', :git => "https://github.com/communcom/ImageViewer.swift.git"
pod 'SDURLCache', '~> 1.3'
pod 'UITextView+Placeholder'
pod 'SubviewAttachingTextView', :git => "https://github.com/communcom/SubviewAttachingTextView.git"
pod "ReCaptcha"
pod 'SwiftLint'
pod 'CircularCarousel'
pod 'NotificationView'
#Social Login
pod 'FBSDKLoginKit', '6.0.0'
pod 'FBSDKCoreKit', '6.0.0'
pod 'GoogleSignIn', '5.0.2'
pod 'TagListView', '~> 1.0'
end
def cyberswift_common_pods
common_pods
# EOS framework
pod 'eosswift', :git => "[email protected]:communcom/eos-swift.git"
pod 'Checksum'
pod 'Locksmith'
pod 'CryptoSwift'
pod 'secp256k1.swift'
pod 'Localize-Swift', '~> 2.0'
# Websockets in swift for iOS and OSX
# pod 'Starscream', '~> 3.0'
pod 'SwiftyJSON', '~> 4.0'
pod 'Starscream'
pod 'ReachabilitySwift', '~> 4.3.1'
# GoloCrypto
pod 'GoloCrypto', :git => "[email protected]:communcom/GoloGrypto.git"
end
target 'Commun' do
project 'Commun.xcodeproj'
common_pods_commun
cyberswift_common_pods
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['CyberSwift'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '5'
end
end
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
config.build_settings['CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER'] = 'NO'
end
end
end
end
target 'CommunShare' do
project 'Commun.xcodeproj'
extensions_pods
end
target 'CommunTests' do
project 'Commun.xcodeproj'
common_pods_commun
cyberswift_common_pods
end
target 'CyberSwift' do
workspace 'cyberSwift/CyberSwift.xcworkspace'
cyberswift_common_pods
end
target 'CyberSwiftTests' do
workspace 'cyberSwift/CyberSwift.xcworkspace'
cyberswift_common_pods
end