The problem:
I have a dynamic framework, which uses Firebase
added by cocoapods. And I also have the App, which uses this dynamic framework. But when I try to build the project I got error Missing required module Firebase
.
I tried the following:
- remove derived data + clean
- re-install pods
- add 'Import paths' to the build settings (in this case I got error 'Library not loaded' in runtime)
My podfile:
target 'Project' do
...
end
target 'Framework' do
pod 'Firebase/Core'
pod 'Firebase/Auth'
end
The Framework
is added to Embedded binaries
and Linked Frameworks and Libraries
.