-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMapyKit.podspec
More file actions
26 lines (20 loc) · 920 Bytes
/
MapyKit.podspec
File metadata and controls
26 lines (20 loc) · 920 Bytes
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
Pod::Spec.new do |s|
s.name = 'MapyKit'
s.version = '0.1.0'
s.summary = 'Native Mapy.cz maps SDK'
s.description = <<-DESC
MapyKit is an native Mapy.cz maps SDK written in Swift.
Backed by Apple MapKit, it allows you to use your current
maps code with custom Mapy.cz overlays.
MapyKit supports multiple map types such as Tourist, Satelite or even Winter.
DESC
s.homepage = 'https://github.com/josefdolezal/MapyKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'josefdolezal' => 'pepik.ml@gmail.com' }
s.source = { :git => 'https://github.com/josefdolezal/MapyKit.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/josefdolezal'
s.swift_version = '4.0'
s.ios.deployment_target = '9.0'
s.source_files = 'MapyKit/**/*.swift'
s.frameworks = 'MapKit'
end