我试图在Xcode上***存档***我的Mac应用程序,然后在我的Xcode中出现以下错误:100d1x的字符串我可以编译我的应用程序没有问题,只是不能存档,我想问题可能是我需要更新我的pod,当我在我的终端运行命令
pod outdated
字符串它显示以下信息:
的所以这只是我的猜测
在尝试了Paul的建议后,我得到了一个不同的错误:的
j9per5c41#
来自https://github.com/grpc/grpc/issues/20500#issuecomment-543241775:
xmakbtuz2#
我在M1 Mac上的Flutter项目中遇到了同样的问题,我解决了这个问题,如下所示。
1-在Podfile的'Runner'块中用BoringSSL替换gRPC依赖项。您应该在'use_framework!'和'use_modular_header!'行。您可以按如下所示进行编辑:pod 'gRPC-Core',:modular_heads => truepod 'gRPC-C++',:modular_heads => true
和POD更新
2-Pod更新The sample Podfile is here.
2条答案
按热度按时间j9per5c41#
来自https://github.com/grpc/grpc/issues/20500#issuecomment-543241775:
xmakbtuz2#
我在M1 Mac上的Flutter项目中遇到了同样的问题,我解决了这个问题,如下所示。
1-在Podfile的'Runner'块中用BoringSSL替换gRPC依赖项。您应该在'use_framework!'和'use_modular_header!'行。您可以按如下所示进行编辑:
pod 'gRPC-Core',:modular_heads => true
pod 'gRPC-C++',:modular_heads => true
和POD更新
2-Pod更新
The sample Podfile is here.