mirror of
https://github.com/zhigang1992/facebook-ios-sdk.git
synced 2026-01-12 22:47:16 +08:00
Summary: I ran this on the release branch: remote/fbobjc/releases/release-ios-sdk-v12.2.1 ``` time swift run --build-path=`mkscratch path` runner prepare-release | xcpretty ``` I created this diff on the release branch but I'm rebasing this onto master first. It needs to be in master in case someone points their SPM to master, that way they still get the latest release. Once it's in master it will be picked into the release branch. Reviewed By: samodom Differential Revision: D32988695 fbshipit-source-id: 849ebca96be82a9f847d2f043e59285aa4b02f91
56 lines
2.2 KiB
Ruby
56 lines
2.2 KiB
Ruby
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
# Use the --use-libraries switch when pushing or linting this podspec
|
|
|
|
Pod::Spec.new do |s|
|
|
|
|
s.name = 'FBSDKCoreKit_Basics'
|
|
s.version = '12.2.1'
|
|
s.summary = 'The kernal module for the Core Facebook SDK'
|
|
|
|
s.description = <<-DESC
|
|
This is intended to be used only as a direct dependency
|
|
of the Facebook iOS SDK
|
|
DESC
|
|
|
|
s.homepage = 'https://developers.facebook.com/docs/ios/'
|
|
s.license = {
|
|
type: 'Facebook Platform License',
|
|
text: <<-LICENSE
|
|
Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
|
|
|
You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
|
|
copy, modify, and distribute this software in source code or binary form for use
|
|
in connection with the web services and APIs provided by Facebook.
|
|
|
|
As with any software that integrates with the Facebook platform, your use of
|
|
this software is subject to the Facebook Platform Policy
|
|
[http://developers.facebook.com/policy/]. This copyright notice shall be
|
|
included in all copies or substantial portions of the software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
LICENSE
|
|
}
|
|
s.author = 'Facebook'
|
|
|
|
s.platform = :ios, :tvos
|
|
s.ios.deployment_target = '10.0'
|
|
s.tvos.deployment_target = '10.0'
|
|
s.library = 'z'
|
|
|
|
s.source = {
|
|
http: "https://github.com/facebook/facebook-ios-sdk/releases/download/v#{s.version}/FacebookSDK_Dynamic.xcframework.zip",
|
|
sha1: '82dc42af8b74a30d9a4c819444174268b6daaddf'
|
|
}
|
|
s.vendored_frameworks = 'XCFrameworks/FBSDKCoreKit_Basics.xcframework'
|
|
end
|