This repository has been archived by the owner on Jun 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathPodfile
53 lines (46 loc) · 1.54 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
platform :ios, '9.0'
abstract_target 'caronae-ios' do
use_frameworks!
inhibit_all_warnings!
pod 'ActionSheetPicker-3.0', '~> 2.3.0'
pod 'TPKeyboardAvoiding', '~> 1.3.2'
pod 'SDCAlertView', '2.5.4'
pod 'SVProgressHUD'
pod 'SDWebImage', '~> 4.3'
pod 'InputMask'
pod 'SwiftMessages'
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'RealmSwift', '~> 3.5'
pod 'ObjectMapper', '~> 3.1'
pod 'ObjectMapper+Realm', '~> 0.5'
pod 'Firebase/Core'
pod 'Firebase/Messaging'
pod 'JSQMessagesViewController', :git => 'https://github.com/caronae/JSQMessagesViewController.git', :branch => 'issue-1864'
pod 'Sheriff'
pod 'UIScrollView-InfiniteScroll'
pod 'SimpleKeychain', '~> 0.8'
pod 'YPImagePicker', '~> 3.0'
pod 'SKPhotoBrowser', '~> 6.0'
pod 'Alamofire', '~> 4.7'
pod 'AlamofireNetworkActivityIndicator', '~> 2.2'
target 'Caronae'
target 'Caronae Dev' do
pod 'SwiftLint'
end
target 'Caronae UITests' do
pod 'SimulatorStatusMagic', :configurations => ['Tests']
end
end
post_install do | installer |
require 'fileutils'
FileUtils.cp_r('Pods/Target Support Files/Pods-caronae-ios-Caronae/Pods-caronae-ios-Caronae-acknowledgements.plist', 'Settings.bundle/Acknowledgements.plist', :remove_destination => true)
end
class ::Pod::Generator::Acknowledgements
def header_title
"Agradecimentos"
end
def header_text
"Este app faz uso das seguintes bibiliotecas de terceiros, cujas licenças encontram-se abaixo:"
end
end