forked from d7laungani/DLLocalNotifications
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDLLocalNotifications.podspec
More file actions
26 lines (15 loc) · 858 Bytes
/
DLLocalNotifications.podspec
File metadata and controls
26 lines (15 loc) · 858 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
26
Pod::Spec.new do |s|
s.name = "DLLocalNotifications"
s.version = "0.09"
s.summary = "Local Notification Helper for User Notifications framework"
s.description = <<-DESC
"DLLocalNotifications makes it extremely easy to setup a local notification, while making it easy to repeat notifications, and encapsulating away the intricacies of the User Notifications Framework."
DESC
s.homepage = "https://github.com/d7laungani/DLLocalNotifications"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "Devesh Laungani"
s.platform = :ios
s.source = { :git => "https://github.com/d7laungani/DLLocalNotifications.git", :tag => s.version}
s.ios.deployment_target = '10.0'
s.source_files = "DLLocalNotifications", "DLLocalNotifications/**/*.{h,m,swift}"
end