forked from iakov-kaiumov/Map
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMap.podspec
More file actions
Latest commit
29 lines (24 loc) · 1.1 KB
/
Copy pathMap.podspec
File metadata and controls
29 lines (24 loc) · 1.1 KB
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
Pod::Spec.newdo |spec|
spec.name='Map'
spec.version='0.1.0'
spec.license={:type=>'MIT'}
spec.homepage='https://github.com/pauljohanneskraft/Map'
spec.authors={'Paul Kraft'=>'pauljohanneskraft@users.noreply.github.com'}
spec.summary='More capable MKMapView wrapper for SwiftUI as drop-in to MapKit\'s SwiftUI view.'
spec.description='MKMapView wrapper for SwiftUI as drop-in to MapKit\'s SwiftUI view. Easily extensible annotations and overlays, iOS 13 support
and backwards compatible with MKAnnotation and MKOverlay!'
spec.source={:git=>
'https://github.com/pauljohanneskraft/Map.git',:tag=>'0.1.0'}
spec.module_name='Map'
spec.swift_version='5.1'
spec.ios.deployment_target='13.0'
spec.osx.deployment_target='10.15'
spec.tvos.deployment_target='13.0'
spec.watchos.deployment_target='6.0'
spec.source_files='Sources/**/*.swift'
spec.framework='SwiftUI'
spec.ios.framework='UIKit'
spec.osx.framework='AppKit'
spec.tvos.framework='UIKit'
spec.watchos.framework='WatchKit'
end