-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMORichNotification.podspec
More file actions
25 lines (21 loc) · 1.27 KB
/
MORichNotification.podspec
File metadata and controls
25 lines (21 loc) · 1.27 KB
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
Pod::Spec.new do |s|
s.name = 'MORichNotification'
s.version = '3.0.1'
s.summary = 'MORichNotification is part of the MoEngage SDK which handles Notification Service Extensions from iOS10.'
s.description = <<-DESC
MoEngage is a mobile marketing automation company. MORichNotification helps you to handle Notification Service Extensions provided by Apple from iOS10. It download's the attachment for the notification and adds it to Notification content.
DESC
s.homepage = 'http://www.moengage.com'
s.documentation_url = 'http://docs.moengage.com'
s.social_media_url = 'https://twitter.com/moengage'
s.license = { :type => 'Commercial', :file => 'LICENSE' }
s.author = { 'Chengappa' => 'chengappa@moengage.com' }
s.platform = :ios
s.ios.deployment_target = '10.0'
s.source = { :git => 'https://github.com/moengage/MORichNotification.git', :tag => s.version.to_s }
s.requires_arc = true
s.ios.vendored_frameworks = 'MORichNotification/MORichNotification.framework'
s.preserve_paths = 'MORichNotification/MORichNotification.framework'
s.module_map = 'MORichNotification/MORichNotification.framework/Modules/module.modulemap'
s.weak_frameworks = 'UserNotifications'
end