gpt4 book ai didi

ios - 在我的 iOS 应用程序上安装 facebook SDK 后出现很多警告

转载 作者:可可西里 更新时间:2023-11-01 03:44:55 25 4
gpt4 key购买 nike

我正在尝试在我的 iOS 应用程序上安装 facebook SDK,以便使用 facebook 帐户进行社交登录。但是通过cocoapods安装后,它给了我很多警告信息。我正在使用 Xcode 9.2。这是使用 cocoapods 安装时我的 podfile 上的代码

# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'

target 'facebook login firebase' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for facebook login firebase

pod 'Bolts'
pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
pod 'FBSDKLoginKit'

end

这是警告的截图 enter image description here https://ibb.co/kx5fCR(如果图片没有出现,这里是链接)

https://developers.facebook.com/docs/ios/getting-started我在该文档的第 4 步中,但出现了警告。那么这里出了什么问题?我错过了什么吗?

最佳答案

这是完整的 Podfile 部分,用于将 Facebook Swift SDK 安装为静态库且没有警告:

  pod 'Bolts', :modular_headers => true, :inhibit_warnings => true
pod 'FacebookCore', :inhibit_warnings => true
pod 'FacebookLogin', :inhibit_warnings => true
pod 'FacebookShare', :inhibit_warnings => true
pod 'FBSDKCoreKit', :modular_headers => true, :inhibit_warnings => true
pod 'FBSDKLoginKit', :modular_headers => true, :inhibit_warnings => true
pod 'FBSDKShareKit', :modular_headers => true, :inhibit_warnings => true

如果您不想打扰个人抑制,请在 Podfile 的顶部添加

inhibit_all_warnings!

此外,如果您使用框架

use_frameworks!

然后你可以跳过为依赖指定模块化头文件的需要,简单地

  pod 'FacebookCore'
pod 'FacebookLogin'
pod 'FacebookShare'

从 Xcode 9.4/FacebookLogin 0.3.1/FBSDKLoginKit 4.35.0/Cocoapods 1.5.3 开始回答当前问题

关于ios - 在我的 iOS 应用程序上安装 facebook SDK 后出现很多警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48186032/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com