-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTripKitUI.podspec
35 lines (29 loc) · 994 Bytes
/
TripKitUI.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
28
29
30
31
32
33
34
35
Pod::Spec.new do |s|
s.name = "TripKitUI"
s.version = "4.7.1"
s.summary = "SkedGo's TripKitUI"
s.homepage = "https://github.com/skedgo/tripkit-ios"
s.license = { type: "Apache-2.0", file: "LICENSE" }
s.authors = {
"Adrian Schoenig" => "[email protected]",
"Brian Huang" => "[email protected]"
}
s.source = { git: "https://github.com/skedgo/tripkit-ios.git", tag: "#{s.version}" }
s.swift_version = '5.5'
s.ios.deployment_target = '15.0'
s.requires_arc = true
s.frameworks = ['UIKit', 'MapKit']
s.dependency 'TripKit', "~> #{s.version}"
s.dependency 'TGCardViewController', '>= 2.2.10'
s.dependency 'GeoMonitor', '~> 0.1.2'
s.dependency 'RxSwift', '~> 6.5'
s.dependency 'RxCocoa', '~> 6.5'
s.dependency 'Kingfisher', '~> 7.0'
s.source_files = [
"Sources/TripKitUI/**/*.swift"
]
s.resources = [
"Sources/TripKitUI/Resources/TripKitUI.xcassets",
"Sources/TripKitUI/**/*.xib"
]
end