-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKnock.podspec
26 lines (22 loc) · 1.05 KB
/
Knock.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
Pod::Spec.new do |spec|
spec.name = "Knock"
spec.version = "1.2.4"
spec.summary = "An SDK to build in-app notifications experiences in Swift with Knock."
spec.description = <<-DESC
With this SDK, you can use Knock's notification infrastructure directly from Swift in your apps.
You can see an example app that uses this SDK here: https://github.com/knocklabs/ios-example-app
Check the docs on this page: https://docs.knock.app/in-app-ui/ios/overview
DESC
spec.homepage = "https://knock.app"
spec.license = { :type => 'MIT', :file => 'LICENSE.md' }
spec.author = { "Knock" => "[email protected]" }
spec.source = { :git => "https://github.com/knocklabs/knock-swift.git", :tag => "#{spec.version}" }
spec.ios.deployment_target = '15.0'
spec.swift_version = '5.3'
spec.source_files = "Sources/**/*.{swift}"
spec.resource_bundles = {
'Colors' => ['Sources/Resources/Colors.xcassets'],
'Media' => ['Sources/Resources/Media.xcassets']
}
spec.dependency 'SwiftPhoenixClient', '~> 5.2.2'
end