gpt4 book ai didi

ios - Flutter:让 Podfile 工作

转载 作者:IT老高 更新时间:2023-10-28 12:46:27 25 4
gpt4 key购买 nike

我正在尝试将 Facebook SDK 添加到我的一个 Flutter 项目中。在常规的 Podfile 中,它看起来像这样:

  # Pods for facebooklogintest

pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
pod ‘FBSDKLoginKit’

“facebooklogintest”是我项目的名称。 Flutter 项目中的 Podfile 看起来有点不同。在“#Pods for Runner”下添加pod文件是否正确?

  # Pods for Runner

pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
pod ‘FBSDKLoginKit’

当我尝试安装它时出现以下错误,如上所示:

[!] Invalid `Podfile` file: Please set FLUTTER_FRAMEWORK_DIR to the directory containing Flutter.framework.

我应该将此文件指向何处以及指向何处才能消除此错误?

最佳答案

试试这个:

def fbPods
pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
pod ‘FBSDKLoginKit’
end

target 'facebooklogintest' do
fbPods
end

target 'Runner' do
fbPods
end

运行这条命令

pod install --no-repo-update

关于ios - Flutter:让 Podfile 工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44802470/

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