运行 Flutter 后出现“Podfile not found”错误

问题描述 投票:0回答:1

我的 flutter_directory >ios 目录中有一个 Podfile,以及一个 Podfile 锁,但是当我从 flutter_directory 运行 flutter 时,它显示“错误:Podfile 丢失。”

到目前为止我已经:

删除了 podfile 并使用“flutter create”重新创建。

我也完成了这组命令:

cd ios rm -rf Pods Podfile.lock 吊舱解体 吊舱初始化 吊舱安装 光盘 .. 扑腾跑

仍然显示“错误:Podfile 丢失。”

flutter dart cocoapods
1个回答
0
投票

在您的项目终端中运行它,

sudo gem install cocoapods
pod setup

然后运行这个,

cd ios
pod install
cd ..

关闭编辑器并重新打开,然后运行您的项目。我希望这能解决问题。

© www.soinside.com 2019 - 2024. All rights reserved.