-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
46 lines (32 loc) · 949 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
38
39
40
41
42
43
44
45
platform :ios, '8.0'
# pod 'CocoaLumberjack' ... in submoduled xmppFramework
# pod 'CocoaAsyncSocket' ... in submoduled xmppFramework
target "Phonex" do
use_frameworks!
# Cocoa lumberjack
pod 'CocoaLumberjack'
# CocoaAsyncSocket, for XPPFramework
pod 'CocoaAsyncSocket', '~> 7.5.0'
# KissXML for XMPPFramework
pod 'KissXML/SwiftNSXML', '~> 5.1.2'
# Local XMPP Framework
pod "XMPPFramework", :path => "dependency/XMPPFramework/XMPPFramework"
# Protocol buffers
#pod 'GoogleProtobuf'
pod 'ProtocolBuffers', '1.9.2'
# Google analytics
#pod 'Google/Analytics'
#, '~> 1.0.0'
# Flurry crash report engine
pod 'Flurry-iOS-SDK/FlurrySDK'
# Application invitation, unused
# pod 'Google/AppInvite'
# Input vield validator
pod 'AJWValidator'
# TTTAttributedLabel by Matt Thompson (NSHipster)
pod 'TTTAttributedLabel'
# Certificate pinning
#pod 'TrustKit'
# From some deps reasons
#pod 'GoogleNetworkingUtilities'
end