forked from SwiftUI-Projects/KeyboardKitSwiftUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKeyboardKitSwiftUI.podspec
More file actions
25 lines (20 loc) · 1020 Bytes
/
KeyboardKitSwiftUI.podspec
File metadata and controls
25 lines (20 loc) · 1020 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
# Run `pod lib lint' to ensure this is a valid spec.
Pod::Spec.new do |s|
s.name = 'KeyboardKitSwiftUI'
s.version = '3.6.3'
s.swift_versions = ['5.3']
s.summary = 'KeyboardKitSwiftUI adds SwiftUI support to KeyboardKit.'
s.description = <<-DESC
KeyboardKitSwiftUI makes it possible to build custom keyboard extensions in SwiftUI.
DESC
s.homepage = 'https://github.com/danielsaidi/KeyboardKitSwiftUI'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Daniel Saidi' => 'daniel.saidi@gmail.com' }
s.source = { :git => 'https://github.com/danielsaidi/KeyboardKitSwiftUI.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/danielsaidi'
s.swift_version = '5.3'
s.ios.deployment_target = '13.0'
s.source_files = 'Sources/KeyboardKitSwiftUI/**/*.swift'
s.resources = "Sources/KeyboardKitSwiftUI/Resources/*.xcassets"
s.dependency 'KeyboardKit', '~> 3.6.3'
end