From 6de9ffd2ee8307db754b0735469c81813a10142c Mon Sep 17 00:00:00 2001 From: Danmei Chen Date: Mon, 30 Mar 2020 12:04:28 +0200 Subject: [PATCH] add pod for firebase --- Podfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Podfile b/Podfile index 96cbfdea8..11753a89d 100644 --- a/Podfile +++ b/Podfile @@ -25,7 +25,14 @@ end def crashlythics if not ENV['USE_CRASHLYTHICS'].nil? + # Add the Firebase pod for Google Analytics pod 'Firebase/Analytics' + pod 'Crashlytics', '~> 3.4.1' + + # Add the pods for any other Firebase products you want to use in your app + # For example, to use Firebase Authentication and Cloud Firestore + pod 'Firebase/Auth' + pod 'Firebase/Firestore' end end