-
Notifications
You must be signed in to change notification settings - Fork 525
/
Atlas.podspec
22 lines (22 loc) · 1.25 KB
/
Atlas.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Atlas"
s.version = '1.0.0'
s.summary = "Atlas is a library of communications user interface components integrated with LayerKit."
s.homepage = 'https://atlas.layer.com/'
s.social_media_url = 'http://twitter.com/layer'
s.documentation_url = 'http://atlas.layer.com/docs'
s.license = 'Apache2'
s.author = { 'Kevin Coleman' => '[email protected]',
'Blake Watters' => '[email protected]',
'Klemen Verdnik' => '[email protected]',
'Ben Blakely' => '[email protected]' }
s.source = { git: "https://github.com/layerhq/Atlas-iOS.git", tag: "v#{s.version}" }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Code/**/*.{h,m}'
s.ios.resource_bundle = { 'AtlasResource' => 'Resources/*' }
s.header_mappings_dir = 'Code'
s.ios.frameworks = %w{UIKit CoreLocation MobileCoreServices}
s.ios.deployment_target = '7.0'
s.dependency 'LayerKit'
end