-
Notifications
You must be signed in to change notification settings - Fork 2
/
XtifyLib.podspec
27 lines (24 loc) · 1.11 KB
/
XtifyLib.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
Pod::Spec.new do |s|
s.name = 'XtifyLib'
s.version = '2.51'
s.summary = 'Xtify library for iOS application with CocoaPods integration.'
s.platform = :ios, '6.0'
s.author = {
'Dmitriy Kuragin' => '[email protected]'
}
s.license = 'Apache License, Version 2.0'
s.homepage = 'https://github.com/sstepashka/XtifyLib'
s.source = {
:git => 'https://github.com/sstepashka/XtifyLib.git',
:tag => 'v2.51'
}
s.ios.dependency 'Reachability'
s.ios.dependency 'SBJson'
s.ios.dependency 'ASIHTTPRequest'
s.source_files = 'XtifyLib/**/*.{h,m}',
s.ios.vendored_frameworks = 'XtifyLib/XtifyPushNoDependencies.framework'
s.preserve_paths = 'XtifyLib/XtifyPushNoDependencies.framework/*'
s.frameworks = 'XtifyPushNoDependencies', 'Foundation', 'UIKit', 'CoreGraphics', 'SystemConfiguration', 'MapKit', 'CoreData', 'MessageUI', 'CoreLocation', 'CFNetwork', 'MobileCoreServices', 'CoreTelephony'
s.library = 'xml2.2', 'z'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/XtifyLib"', 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libz' '$(SDKROOT)/usr/include/libxml' }
end