mirror of
https://github.com/zhigang1992/facebook-ios-sdk.git
synced 2026-01-12 22:47:16 +08:00
Summary: Actually moving the files. Needs to go in a separate commit so that HG doesn't consider them to be additions. There may be an hg command that handles symlinks more gracefully but I don't know what it is. Reviewed By: jawwad Differential Revision: D30522433 fbshipit-source-id: de5ee14ee982c69203d19fcdb9f0468ddb640333
57 lines
2.2 KiB
Ruby
57 lines
2.2 KiB
Ruby
# Use the --use-libraries switch when pushing or linting this podspec
|
|
|
|
Pod::Spec.new do |s|
|
|
|
|
s.name = 'FBSDKCoreKit'
|
|
s.version = '11.1.0'
|
|
s.summary = 'Official Facebook SDK for iOS to access Facebook Platform core features'
|
|
|
|
s.description = <<-DESC
|
|
The Facebook SDK for iOS CoreKit framework provides:
|
|
* App Events (for App Analytics)
|
|
* Graph API Access and Error Recovery
|
|
* Working with Access Tokens and User Profiles
|
|
DESC
|
|
|
|
s.homepage = 'https://developers.facebook.com/docs/ios/'
|
|
s.license = { type: 'Facebook Platform License', file: 'LICENSE' }
|
|
s.author = 'Facebook'
|
|
|
|
s.platform = :ios, :tvos
|
|
s.ios.deployment_target = '9.0'
|
|
s.tvos.deployment_target = '10.0'
|
|
|
|
s.source = {
|
|
git: 'https://github.com/facebook/facebook-ios-sdk.git',
|
|
tag: "v#{s.version}"
|
|
}
|
|
|
|
s.ios.weak_frameworks = 'Accelerate', 'Accounts', 'AdSupport', 'Social', 'Security', 'StoreKit', 'QuartzCore', 'CoreGraphics', 'UIKit', 'Foundation', 'AudioToolbox'
|
|
s.tvos.weak_frameworks = 'CoreLocation', 'Security', 'QuartzCore', 'CoreGraphics', 'UIKit', 'Foundation', 'AudioToolbox'
|
|
|
|
s.default_subspecs = 'Core'
|
|
s.swift_version = '5.0'
|
|
s.pod_target_xcconfig = {
|
|
'GCC_PREPROCESSOR_DEFINITIONS': '$(inherited) FBSDKCOCOAPODS=1',
|
|
'DEFINES_MODULE': 'YES',
|
|
}
|
|
s.user_target_xcconfig = {
|
|
'GCC_PREPROCESSOR_DEFINITIONS': '$(inherited) FBSDKCOCOAPODS=1'
|
|
}
|
|
s.library = 'c++', 'stdc++'
|
|
|
|
s.subspec 'Core' do |ss|
|
|
ss.dependency 'FBSDKCoreKit_Basics', "~> #{s.version}"
|
|
ss.dependency 'FBAEMKit', "~> #{s.version}"
|
|
ss.exclude_files = 'Sources/FacebookCore/Exports.swift',
|
|
'FBSDKCoreKit/FBSDKCoreKit/Swift/Exports.swift'
|
|
ss.source_files = 'FBSDKCoreKit/FBSDKCoreKit/**/*.{h,hpp,m,mm}',
|
|
'Sources/FacebookCore/**/*.swift'
|
|
ss.public_header_files = 'FBSDKCoreKit/FBSDKCoreKit/include/*.h'
|
|
ss.private_header_files = 'FBSDKCoreKit/FBSDKCoreKit/Internal/**/*.h',
|
|
'FBSDKCoreKit/FBSDKCoreKit/AppEvents/Internal/**/*.h'
|
|
ss.resource_bundles = { 'FacebookSDKStrings' => ['FacebookSDKStrings.bundle/**/*.strings'] }
|
|
ss.library = 'c++', 'stdc++'
|
|
end
|
|
end
|