I followed all instructions for integrating the new firebase
release on ios
:
I downloaded the file GoogleService-Info.plist
I had the same problem. I found that the problem was I have three targets in Cocoapods file. And only my main one target has Firebase added. So that when I want to import Firebase to a file that is used in other targets, Xcode gives error and says Module 'Firebase' not found. This is my pods project file. One solution for me is adding Firebase pod to all targets. Or another solution is removing the file from other targets.
def common_pods
pod 'XXX'
end
target 'myMainProject' do
common_pods()
pod 'Firebase/Core'
pod 'Firebase/AdMob'
pod 'Firebase/RemoteConfig'
pod 'Firebase/Crashlytics'
pod 'Firebase/Analytics'
end
target 'myExtention1' do
common_pods()
end
target 'myextension2' do
common_pods()
end
There are two ways of adding the Firebase SDK to your iOS project. You can either use CocoaPods, in which case its really important to make sure your pod dependency is in the target you are using. E.g.
use_frameworks!
platform :ios, '7.0'
pod 'Firebase/Analytics'
target 'Target1' do
end
target 'Target2' do
end
There are a lot of different ways of configuring targets in CocoaPods, so your Podfile may look different. The important thing is that the target you specify is linked with the pod - in this case I have specified the Analytics pod so its available to all targets, but if I put it just in the Target1 do...end
block, then it wouldn't be available in Target2.
If you're using the framework integration method, then make sure the libraries are specified in the Link Binary With Libraries section of your Build Phases tab. This should happen automatically if you drag them into a Frameworks group in Xcode.
Finally, if that doesn't work, Xcode may have cached something bad. Try opening the Product menu, hold down Option and click Clean build folder.
I tried the above but sadly, nothing worked. Clean the build folder, clearing Xcode cache helped me. Try this:
- Quit Xcode.
- Delete project's temp files located at ~/Library/Developer/Xcode/DerivedData
- Delete ProjectName.xcworkspace
- Delete Podfile.lock file and Pods folder
- Run pod install.
- Open the newly created ProjectName.xcworkspace file and build.
Pay extensive attention to the 6th step. Open this newly created xcworkspace, not xcodeproj.
Original answer: https://stackoverflow.com/a/44486792/913601
update your pods. open terminal go to your project directory and type the following command
pod update
Its work for me in this way.
using FirebaseCore/FirebaseCore.h
Try the below code.
#import "AppDelegate.h"
#import <FirebaseCore/FirebaseCore.h>
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
[FIRApp configure];
return YES;
}
Got the same issue on the import. My target's build settings overrode the 'Header search path' without the '$(inherited)' flag
'pod update' warns you about that.
It solved the issue for me
Hope it helps