因为你可能都知道Firebase发了一个Version跳转,我试图让我的设置与Xcode Playground一起工作。
有一个参考如何使用较旧版本的Cocoapods和Ruby在Playground中实现Firebase,但这对我来说真的不起作用swift playground for experimenting with firebase。即使项目本身的Firebase实施工作正常,我可以导入我的Firebase,它也不再在Playground上工作。
有人知道如何使用Playground和Firebase添加工作设置吗?
正在使用的软件:
这里有任何帮助或线索吗?
答案 0 :(得分:1)
我创建了一个Framework,然后导入到我的Playground中。确保正确定位Podfile中的框架:
target 'YourApp' do
pod 'Firebase/Core'
target 'YourAppFramework' do
end
end
构建框架后,导入:
import AppFramework
import FirebaseCore
除了与Auth相关的功能外,大多数事情都有效。