forked from facebookarchive/FBNotifications
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFBNotifications.podspec
More file actions
21 lines (15 loc) · 797 Bytes
/
FBNotifications.podspec
File metadata and controls
21 lines (15 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'FBNotifications'
s.version = '1.0.2'
s.license = { :type => 'Facebook Platform License', :file => 'LICENSE' }
s.summary = 'Facebook In-App Notifications Framework'
s.homepage = 'https://developers.facebook.com/products/analytics'
s.authors = { 'Nikita Lutsenko' => 'nlutsenko@me.com' }
s.source = { :git => 'https://github.com/MobileConcepts/FBNotifications.git', :tag => s.version.to_s }
s.requires_arc = true
s.dependency 'SDWebImage'
s.ios.deployment_target = '8.0'
s.source_files = 'iOS/FBNotifications/FBNotifications/**/*.{h,m}'
s.public_header_files = 'iOS/FBNotifications/FBNotifications/*.h'
s.frameworks = 'ImageIO', 'MobileCoreServices','SDWebImage'
end