-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLayerKit.podspec
20 lines (19 loc) · 910 Bytes
/
LayerKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'LayerKit'
s.version = '0.10.3'
s.summary = 'LayerKit is the iOS client interface for the Layer communications cloud.'
s.license = 'Commercial'
s.authors = {"Blake Watters"=>"blake@layer.com", "Klemen Verdnik"=>"klemen@layer.com"}
s.homepage = 'http://layer.com'
s.libraries = 'z'
s.requires_arc = true
s.xcconfig = {"ENABLE_NS_ASSERTIONS"=>"YES"}
s.source = { git: 'https://github.com/layerhq/releases-ios.git', tag: "v#{s.version}" }
s.platform = :ios, '7.0'
s.ios.platform = :ios, '7.0'
s.ios.preserve_paths = 'LayerKit.framework'
s.ios.public_header_files = 'LayerKit.framework/Versions/A/Headers/*.h'
s.ios.resource = 'LayerKit.framework/Versions/A/Resources/**/*'
s.ios.vendored_frameworks = 'LayerKit.framework'
s.ios.frameworks = ["CFNetwork", "Security", "MobileCoreServices", "SystemConfiguration"]
end