-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
37 lines (32 loc) · 1002 Bytes
/
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
use_frameworks!
inhibit_all_warnings!
target 'Mensal' do
platform :ios, '12.0'
pod 'SwiftDate', '~> 6.0'
pod 'SwiftyJSON', '~> 4.0'
pod 'SwiftyBeaver', '~> 1.6'
pod 'Localize-Swift', '~> 2.0'
pod 'AlecrimCoreData', '~> 5.2'
# pod 'AlecrimCoreData', '~> 6.0'
pod 'Alamofire', '~> 4.8'
pod 'AlamofireNetworkActivityIndicator', '~> 2.2'
pod 'AlamofireNetworkActivityLogger', '~> 2.3'
pod 'Alamofire-SwiftyJSON', '~> 3.0'
pod 'SwiftyUserDefaults', '~> 3.0'
pod 'Zip', '~> 1.1'
# pod 'IBDesignable', '~> 0.1'
# pod 'ImageTextField','~> 1.0'
# pod 'MRTextField', '~> 1.0'
# pod 'Material', '~> 2.16'
# pod 'DCKit', '~> 1.0'
# https://cocoapods.org/pods/UITextField+Shake
end
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
if config.name == 'Release'
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Owholemodule'
else
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Onone'
end
end
end