-
Notifications
You must be signed in to change notification settings - Fork 5
/
Podfile
47 lines (37 loc) · 1.28 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
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
source 'https://gitlab.com/a.cappelli87/kontalkrepo.git'
source 'https://github.com/CocoaPods/Specs.git'
target 'Kontalk' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Kontalk
pod 'XMPPFramework/Swift', :git => 'https://github.com/kontalk/XMPPFramework.git'
pod 'OpenSSL-Universal'
pod 'ObjectivePGP', :git => 'https://github.com/kontalk/ObjectivePGP.git'
pod 'SwiftyBeaver'
pod 'Fabric'
pod 'Crashlytics'
pod 'Alamofire', '~> 4.7'
pod 'AlamofireImage', '~> 3.5'
pod 'SwiftEventBus', :tag => '3.0.1', :git => 'https://github.com/cesarferreira/SwiftEventBus.git'
pod 'SecurityExtensions'
#pod 'CocoaLumberjack' # Skip pinning version because of the awkward 2.x->3.x transition
#pod 'KissXML', '~> 5.2'
#pod 'libidn', '~> 1.35'
# UI
pod "FlagPhoneNumber"
pod 'RAMAnimatedTabBarController'
pod 'NVActivityIndicatorView'
pod "AvatarImageView", '~> 2.2.0'
pod 'RxSwift', '~> 4.0'
pod 'RxCocoa', '~> 4.0'
target 'KontalkTests' do
inherit! :search_paths
# Pods for testing
end
target 'KontalkUITests' do
inherit! :search_paths
# Pods for testing
end
end