I am trying to add a FirebaseUI / Storage pod to an iOS application that throws the following linker error:
SDWebImage not found for x86_64 architecture
I tried adding SDWebImage myself and it works, but as soon as I add the FirebaseUI / Storage module, it throws the above error.
Any ideas what could be causing this?
Here's what my subfile looks like:
target 'myApp' do pod 'Firebase/Core' pod 'Firebase/Database' pod 'Firebase/Storage' pod 'FirebaseUI/Storage' pod 'SDWebImage' pod 'MMDrawerController' end
source share