I'm trying to use FirebaseStorage and can't import it in my project.
My podfile looks like this:
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'MyProject' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'Firebase/Storage'
pod 'Firebase/Core'
//A bunch more here
end
However, when I try to import FirebaseStorage
, I get an error saying the module isn't found. I've tried updating my podfile and rebuilding my project, but nothing's working. Also, all of the other Firebase services that are in my podfile can be imported without an issue.
How can I import the Firebase Storage module? Thanks!