Firebase launch checklist

This document contains a checklist of things to consider before launching a Firebase app to production.

Update your connected apps

  • Add a release SHA-1 hash for your app's signing certificate in the Project settings of the Firebase console (for OAuth client IDs). This is required if your app uses Firebase Authentication (Google sign-in or phone number sign-in) or Firebase Dynamic Links.

  • Update your App Store ID and Bundle ID and Team ID (if necessary) in the Project settings of the Firebase console.

  • Add access control for your domains to prevent unauthorized usage.

Know your plan limits and set budget alerts

  • The Realtime Database, Cloud Storage, and Hosting features have hard usage caps on the Spark pricing plan. Hitting these limits may mean that your app stops working as you intend. Consider upgrading to the Blaze pricing plan to remove these limits. See the pricing page for more details.

  • Set up budget alerts for your project in the Google Cloud console.

  • Monitor your Usage and billing dashboard in the Firebase console.

Enable App Check

  • To help ensure only your apps can access your backend services, enable App Check for every service that supports it.

Prepare services

Analytics

Authentication

  • Add a release SHA-1 hash for your app's signing certificate in the Project settings of the Firebase console (for OAuth client IDs). This is required if your app uses Google sign-in or phone number sign-in.

  • Ensure you have error handling on Apple platforms for common errors.

  • Disable providers you aren't using (especially anonymous users in Firebase console).

  • If using Google Sign In, personalize your OAuth consent screen.

  • Customize your domain and sender for the Authentication email sending service.

Cloud Firestore

  • Make sure your release build uses ProGuard for code shrinking. Without ProGuard the Cloud Firestore SDK and its dependencies can add as much as 1MB to your APK size.

  • Configure your Security Rules to prevent unintentional data access.

Cloud Messaging

  • Be sure to upload your APNS Auth Key for Cloud Messaging on Apple apps in the Firebase console. If using APNS certificates, ensure that your production APNS certificate is uploaded.

  • Enable BigQuery linking if you plan to use BigQuery with your Cloud Messaging data.

Cloud Storage

Crashlytics

  • Add a release SHA-1 hash for your app's signing certificate in the Project settings of the Firebase console (for OAuth client IDs).

Firebase ML

Realtime Database

Remote Config

  • Ensure any experimental Remote Config rules don't affect your release users, and that appropriate defaults are distributed in your app.

Release

  • Run Android apps through Test Lab to check for last minute bugs.

  • Create Dynamic Links for key new features to use in promotional material and social media.