-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSwiftUI_NotificationBanner.podspec
35 lines (23 loc) · 1.15 KB
/
SwiftUI_NotificationBanner.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
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SwiftUI_NotificationBanner'
s.version = '0.3'
s.summary = 'With SwiftUI Notification Banner it is super-easy to display in-app notifications.'
s.swift_version = '5.1'
s.description = <<-DESC
Finally a native SwiftUI notification banner package! With SwiftUI Notification Banner it is super-easy to display in-app notifications.
DESC
s.homepage = 'https://github.com/DominikButz/SwiftUI_NotificationBanner'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'dominikbutz' => 'dominikbutz@gmail.com' }
s.source = { :git => 'https://github.com/DominikButz/SwiftUI_NotificationBanner.git', :tag => s.version.to_s }
s.platform = :ios
s.ios.deployment_target = '14.0'
s.platform = :macos
s.macos.deployment_target = '11.0'
s.source_files = 'Sources/**/*'
# s.public_header_files = 'SwiftUI_NotificationBanner/**/*.h'
end