Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase- Could not locate configuration file: 'GoogleService-Info.plist'

Tags:

ios

firebase

I have downloaded it already and added it to my Xcode Project I did copy items if needed as well .. I do not understand why I am still getting this error. I have FIRApp.configure() in my app delegate... Any tips? Thank you in advance.

 func application(application: UIApplication,
                         didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?)
            -> Bool {
                UINavigationBar.appearance().tintColor = UIColor.greenColor()
                UIApplication.sharedApplication().statusBarStyle = .LightContent

                FIRApp.configure()
                return true
        }
like image 428
Frank Boccia Avatar asked Jul 07 '16 16:07

Frank Boccia


1 Answers

  1. Add to the project
  2. Click on it:

enter image description here

  1. On the right sidebar from Xcode, mark the Target Membership option:

enter image description here

like image 174
Bruno Lemos Avatar answered Sep 23 '22 17:09

Bruno Lemos