forked from facebookarchive/facebook-swift-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
FacebookLogin.podspec
26 lines (20 loc) · 935 Bytes
/
FacebookLogin.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
Pod::Spec.new do |s|
s.name = 'FacebookLogin'
s.version = '0.1.1'
s.author = 'Facebook'
s.homepage = 'https://developers.facebook.com/docs/swift'
s.documentation_url = 'https://developers.facebook.com/docs/swift/reference'
s.license = { :type => 'Facebook Platform License', :file => 'LICENSE' }
s.summary = "Official Facebook SDK in Swift to integrate with Facebook Login."
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/Login/**/*.swift'
s.exclude_files = 'Sources/Login/LoginManager.DefaultAudience.swift'
s.module_name = 'FacebookLogin'
s.ios.dependency 'FacebookCore'
s.ios.dependency 'Bolts', '~> 1.8'
s.ios.dependency 'FBSDKCoreKit', '~> 4.15'
s.ios.dependency 'FBSDKLoginKit', '~> 4.15'
end