我正在尝试使用codemagic构建我的flutter应用程序。
我得到了这个错误
/Users/builder/clone/ios/Runner/GeneratedPluginRegistrant.m:30:9: fatal error: module 'hexcolor' not found
@import hexcolor;
~~~~~~~^~~~~~~~
1 error generated.
如果我检查依赖项,我可以看到模块hexcolor已下载。
Downloading shimmer_animation 2.1.0+1...
Downloading json_annotation 4.6.0...
Downloading hexcolor 2.0.7...
Downloading google_fonts 3.0.1...
我该怎么解决这个问题?这是我第一次使用codemagic,也是我第一次为iOS构建flutter应用程序。任何帮助将不胜感激。
谢谢
2条答案
按热度按时间ryoqjall1#
检查您的iOS版本xcode和pod文件是否匹配
ssgvzors2#
我在本地机器上升级了flutter sdk版本,然后使用命令
flutter create .
重新生成ios文件,然后推送代码。然后重建iOS,它就能工作了
我不需要检查我的iOS版本的xcode和pod文件是否匹配,因为这是flutter sdk的责任,使它们匹配,我所要做的就是升级flutter sdk