xcode 404 Not Found Not Found Not Found

qyuhtwio  于 2023-08-07  发布在  其他
关注(0)|答案(2)|浏览(111)

当我尝试通过xcode为iPhone构建Flutter应用程序时,我得到此错误enter image description here
我已经改变了iOS的目标,以匹配在cocopods和在xcode,但没有帮助,我也试图重新安装cocopods的情况下,这是问题,但没有帮助。

enxuqcxy

enxuqcxy1#

这可能是与pod相关的问题。请尝尝这个

//make sure you are in the ios folder
$flutter clean 
...
then
$flutter pub get
///then initialise pods
$pod init
..
$pod install
//Then build for ios

字符串

svujldwt

svujldwt2#

请运行以下命令并尝试重新运行您的应用

rm Podfile.lock
pod cache clean --all
sudo arch -x86_64 pod install --repo-update
pod repo update
pod install

字符串
这将需要一段时间,但这将通过再次下载所有依赖项来同步您的podfile。有时会发生在更新Mac的操作系统或更新Flutter后。

相关问题