我在Codemagic上的Flutter应用的iOS版本有问题。我得到以下错误:
Warning: Building for device with codesigning disabled. You will have to manually codesign before deploying to device.
Building com.example.meatcheat for device (ios-release)...
Updating project for Xcode compatibility.
Upgrading project.pbxproj
Upgrading Runner.xcscheme
Removing script build phase dependency analysis.
Running pod install... 503ms
Running Xcode build...
Xcode build done. 52.9s
Failed to build iOS app
Parse Issue (Xcode): Module 'cloud_firestore' not found
/Users/builder/clone/ios/Runner/GeneratedPluginRegistrant.m:11:8
Encountered error while building for device.
错误出现在第4步“构建iOS...”
我非常确定cloud_firestore是在我的酒吧中添加的。
我的pod文件:
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
target 'Runner' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Runner
end
以下是我到目前为止为解决这个问题所做的尝试:
将Codemagic中的Flutter版本设置为“stable”.更新了iOS文件夹中的Podfile并将Podfile.lock提交到我的存储库中.在构建之前尝试在Codemagic中运行pod install命令.尝试了不同的方法来更新Podfile.不幸的是我还没能解决这个问题。有没有人对我可以尝试解决这个问题的其他建议?任何帮助将不胜感激。
感谢您的评分
注意:我使用的是Windows PC!
1条答案
按热度按时间ql3eal8s1#
我遇到了同样的问题,尝试按照步骤操作,对我很有效,
删除podfile.lock文件并重新安装pod,这应该可以正常工作