Files
facebook-ios-sdk/FBSDKShareKit.podspec
chris pan 05ba49a145 Add podspec for each kit and fixes for pods dynamic frameworks
This also fixes a bad import statement
2015-04-10 15:48:56 -07:00

37 lines
1.4 KiB
Ruby

# Use the --use-libraries switch when pushing or linting this podspec
Pod::Spec.new do |s|
s.name = "FBSDKShareKit"
s.version = "4.0.1"
s.summary = "Official Facebook SDK for iOS 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.homepage = "https://developers.facebook.com/docs/ios/"
s.license = { :type => "Facebook Platform License", :file => "LICENSE" }
s.author = 'Facebook'
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/facebook/facebook-ios-sdk.git",
:tag => "sdk-version-4.0.1"
}
s.weak_frameworks = "Accounts", "CoreLocation", "Social", "Security", "QuartzCore", "CoreGraphics", "UIKit", "Foundation", "AudioToolbox"
s.requires_arc = true
s.source_files = "FBSDKShareKit/FBSDKShareKit/**/*.{h,m}"
s.public_header_files = "FBSDKShareKit/FBSDKShareKit/*.{h}"
s.private_header_files = "FBSDKShareKit/FBSDKShareKit/**/*Internal.h","FBSDKShareKit/FBSDKShareKit/Internal/**/*.h"
s.header_dir = "FBSDKShareKit"
s.dependency 'FBSDKCoreKit'
end