-
-
Notifications
You must be signed in to change notification settings - Fork 662
/
Copy pathNotificationBannerSwift.podspec
executable file
·26 lines (20 loc) · 1.08 KB
/
NotificationBannerSwift.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 |s|
s.name = 'NotificationBannerSwift'
s.version = '4.0.0'
s.summary = 'The easiest way to display in app notification banners in iOS.'
s.description = <<-DESC
NotificationBanner is an extremely customizable and lightweight library that makes the task of displaying in app notification banners and drop down alerts an absolute breeze in iOS.
DESC
s.homepage = 'https://github.com/Daltron/NotificationBanner'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Daltron' => 'daltonhint4@gmail.com' }
s.source = { :git => 'https://github.com/Daltron/NotificationBanner.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.swift_version = '5.0'
s.source_files = 'NotificationBanner/Classes/**/*'
s.dependency 'SnapKit', '~> 5.7.1'
s.dependency 'MarqueeLabel', '~> 4.5.0'
s.resource_bundle = {
"NotificationBannerPrivacyInfo" => "NotificationBanner/Supporting Files/PrivacyInfo.xcprivacy"
}
end