如何解决 iOS 库中的 firebase 问题?
对于我们的项目,我们正在创建一个 iOS 框架,该项目还需要 Firebase 作为第三方库,当我们尝试将库添加到单独的项目中时,Xcode 会抛出错误,因为它无法识别 Firebase。
错误:
没有这样的模块“Firebase”x86_64-apple-ios-simulator.swiftinterface
由于上述错误,无法构建用于导入的模块“Project”;文本界面可能会因项目问题或编译器错误而损坏,
谢谢
For our project we're creating an iOS framework, this project also requires Firebase as a third party library and when we try to add our library in a separate project Xcode throws us an error because it can't recognize Firebase.
Error:
No such module 'Firebase' x86_64-apple-ios-simulator.swiftinterface
Failed to build module 'Project' for importation due to the errors above; the textual interface may be broken by project issues or a compiler bug
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要构建框架,您需要创建一个通用聚合框架来支持模拟器和物理设备。
尝试在您的项目中创建一个聚合框架并运行。
To build a framework, you need to create a universal aggregate framework to support both the simulator and physical device.
Try to create an aggregate framework in your project and run.