forked from kunass2/ForegroundNotification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBSForegroundNotification.podspec
25 lines (21 loc) · 1.14 KB
/
BSForegroundNotification.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
#
# Be sure to run `pod lib lint BSForegroundNotification.podspec' to ensure this is a
# valid spec before submitting.
#
# 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 = "BSForegroundNotification"
s.version = "1.9.1"
s.summary = "Present your custom iOS 10 notification alert when app is in foreground mode."
s.description = "If you need present notification that looks like a native notifaction in iOS 10 with custom actions including textfield while app is in foreground mode... this framework is for you:-) Simple and straightforward in use."
s.homepage = "https://github.com/kunass2/BSForegroundNotification"
s.license = 'MIT'
s.author = { "Bartłomiej Semańczyk" => "[email protected]" }
s.source = { :git => "https://github.com/kunass2/BSForegroundNotification.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.frameworks = 'UIKit', 'AVFoundation'
end