forked from processone/xmpp-messenger-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xmpp-messenger-ios.podspec
36 lines (31 loc) · 1.5 KB
/
xmpp-messenger-ios.podspec
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
#
# Be sure to run `pod lib lint xmpp-messenger-ios.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "xmpp-messenger-ios"
s.version = "1.0.1"
s.summary = "A Swift Wrapper Arround XMPP to build chat clients"
s.description = <<-DESC
xmpp-messenger-ios is a Swift XMPP Wrapper to quickly build xmpp chat clients.
It include third party package like JSQMessageViewController to provide UI and sound for the messaging, while the XMPPFramework handle communication
DESC
s.homepage = "https://github.com/processone/xmpp-messenger-ios"
s.license = 'MIT'
s.author = { "ProcessOne" => "[email protected]" }
s.source = { :git => "https://github.com/processone/xmpp-messenger-ios.git"}
s.platform = :ios, '8.0'
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.dependency 'FMDB'
s.dependency 'JSQMessagesViewController'
s.dependency 'JSQSystemSoundPlayer', '~> 2.0'
s.dependency 'XMPPFramework'
s.ios.frameworks = 'Foundation', 'CoreData', 'UIKit', 'CFNetwork', 'Security', 'XMPPFramework'
s.source_files = ['Pod/Classes/**/*.{swift}']
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2 $(PODS_ROOT)/XMPPFramework/module', 'ENABLE_BITCODE' => 'NO'}
end