-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKVKFlowCoordinators.podspec
More file actions
23 lines (19 loc) · 927 Bytes
/
KVKFlowCoordinators.podspec
File metadata and controls
23 lines (19 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.name = "KVKFlowCoordinators"
spec.version = "0.2.2"
spec.summary = "SwiftUI flow coordinators"
spec.description = <<-DESC
SwiftUI flow coordinator to control navigation in application.
DESC
spec.homepage = "https://github.com/kvyatkovskys/KVKFlowCoordinators"
spec.license = { :type => 'MIT', :file => 'LICENSE.md' }
spec.author = { "Kviatkovskii Sergei" => "sergejkvyatkovskij@gmail.com" }
spec.source = { :git => "https://github.com/kvyatkovskys/KVKFlowCoordinators.git", :tag => "#{spec.version}" }
spec.ios.deployment_target = '16.0'
spec.osx.deployment_target = '13.0'
spec.ios.framework = 'SwiftUI'
spec.osx.framework = 'SwiftUI'
spec.swift_version = '5.0'
spec.source_files = "Sources", "Sources/**/*.swift"
spec.social_media_url = 'https://github.com/kvyatkovskys'
end