Implemented all steps from firebase doc :
- Create App on firebase
- add google plist in project
- POD installed
- Add
FirebaseApp.configure()
in didFinishLaunchingWithOptions - Added run script
${PODS_ROOT}/Fabric/run
- update Debug information format
Implemented all steps from firebase doc :
FirebaseApp.configure()
in didFinishLaunchingWithOptions${PODS_ROOT}/Fabric/run
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
}