0

Implemented all steps from firebase doc :

  1. Create App on firebase
  2. add google plist in project
  3. POD installed
  4. Add FirebaseApp.configure() in didFinishLaunchingWithOptions
  5. Added run script ${PODS_ROOT}/Fabric/run
  6. update Debug information format
Ravi Makwana
  • 2,782
  • 1
  • 29
  • 41
Sishpal
  • 9
  • 1

1 Answers1

0

Please make sure Firebase configuration should be first line in the didFinishLaunchingWithOptions method of AppDelegate file.

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
   FirebaseApp.configure()
   Fabric.sharedSDK().debug = true
   return true
 }