forked from facebookarchive/facebook-swift-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FacebookCore.podspec
30 lines (24 loc) · 1.12 KB
/
FacebookCore.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
Pod::Spec.new do |s|
s.name = 'FacebookCore'
s.version = '0.2.0'
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 access Facebook Platform's core features."
s.description = <<-DESC
The Facebook SDK in Swift Core framework provides:
* App Events (for App Analytics)
* Graph API Access and Error Recovery
* Working with Access Tokens and User Profiles
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/Core/**/*.swift'
s.module_name = 'FacebookCore'
s.pod_target_xcconfig = { 'ENABLE_TESTABILITY' => 'YES' }
s.ios.dependency 'Bolts', '~> 1.8'
s.ios.dependency 'FBSDKCoreKit', '~> 4.17'
end