forked from facebookarchive/facebook-swift-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FacebookShare.podspec
31 lines (25 loc) · 1.21 KB
/
FacebookShare.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
27
28
29
30
31
Pod::Spec.new do |s|
s.name = 'FacebookShare'
s.version = '0.3.0'
s.author = 'Facebook'
s.homepage = 'https://developers.facebook.com/docs/swift'
s.documentation_url = 'https://developers.facebook.com/docs/swift/sdk-reference'
s.license = { :type => 'Facebook Platform License', :file => 'LICENSE' }
s.summary = "Official Facebook SDK in Swift to access Facebook Platform's Sharing Features."
s.description = <<-DESC
The Facebook SDK for iOS ShareKit framework provides:
* Share content with Share Dialog and Message Dialog.
* Send Game Requests or App Invites to grow your app.
* Publish content and open graph stories with the Graph API.
DESC
s.source = { :git => 'https://github.com/facebook/facebook-sdk-swift.git', :tag => s.version.to_s }
s.requires_arc = true
s.platform = :ios
s.ios.deployment_target = '8.0'
s.source_files = 'Sources/Share/**/*.swift'
s.module_name = 'FacebookShare'
s.ios.dependency 'FacebookCore', '~> 0.3'
s.ios.dependency 'Bolts', '~> 1.8'
s.ios.dependency 'FBSDKCoreKit', '~> 4.27'
s.ios.dependency 'FBSDKShareKit', '~> 4.27'
end