ios Pod安装不会安装Pod

zte4gxcn  于 2022-12-15  发布在  iOS
关注(0)|答案(4)|浏览(215)

我在运行Pod安装时遇到问题。
这是我的pod文件的样子:

platform :ios, '8.0'

target 'Template1' do

pod "PinterestSDK", :git => "https://github.com/pinterest/ios-pdk.git"

end

但它不会安装pod,一旦我执行 pod install,这是它给出的输出。

Analyzing dependencies
Downloading dependencies
Generating Pods project
Integrating client project

[!] Please close any current Xcode sessions and use `Template1.xcworkspace` for this project from now on.
Sending stats
Pod installation complete! There are 0 dependencies from the Podfile and 0 total
pods installed.

[!] The Podfile does not contain any dependencies.

我不知道出了什么问题。

kcugc4gi

kcugc4gi1#

1.从项目目录中删除“Pod”目录(如果存在)
1.在终端中,$open -一个xcode Podfile
1.使用此:(播客文件)
操作平台:ios,“8.0”
目标“模板1”执行
pod“PinterestSDK”
结束
1.在终端中,$ cd您的项目路径

  1. pod安装
3b6akqbq

3b6akqbq2#

运行命令pod install后,你会得到一条消息,如图所示。之后,删除Podfile并运行你的项目,它会自动创建另一个Podfile并生成包含在pub spec.yaml enter image description here中的依赖项

abithluo

abithluo3#

If you are using React Native, make sure to add this on top of your pod file.

require_relative '../node_modules/react-native/scripts/react_native_pods'

require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' platform :ios, '10.0'

luaexgnf

luaexgnf4#

对我来说,当我在macOS上运行flutter应用程序时发生了这个错误。
我删除了macos/podfilemacos/podfile.lock文件并重新运行flutter run,这就解决了问题。

相关问题