flutter CodeMagic:构建iOS错误:未找到模块

3pvhb19x  于 2023-06-30  发布在  Flutter
关注(0)|答案(2)|浏览(135)

我正在尝试使用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应用程序。任何帮助将不胜感激。
谢谢

ryoqjall

ryoqjall1#

检查您的iOS版本xcodepod文件是否匹配

ssgvzors

ssgvzors2#

我在本地机器上升级了flutter sdk版本,然后使用命令flutter create .重新生成ios文件,然后推送代码。
然后重建iOS,它就能工作了
我不需要检查我的iOS版本的xcode和pod文件是否匹配,因为这是flutter sdk的责任,使它们匹配,我所要做的就是升级flutter sdk

相关问题