Firebase provides a suite of cloud services—including Cloud Firestore, Authentication, App Hosting, and Crashlytics—backed by Google Cloud infrastructure. Setting up a new Firebase project in the Firebase Console is the first step before integrating Firebase SDKs into your web, Android, iOS, or Flutter applications.
Step-by-Step Project Setup Workflow
Navigate to console.firebase.google.com and sign in with your Google account.
Click Add project (or Create a project).
Enter a unique Project Name (e.g.
lynxbee-production-app). Firebase automatically generates a corresponding Google Cloud Project ID.Configure Google Analytics (Recommended for crash reporting and user engagement tracking). Select an existing Analytics account or create a new one.
Click Create project and wait for Google Cloud resource provisioning to complete.
Registering Your Platform App (Web / Android / iOS)
Once created, click the platform icon on your Project Overview dashboard to register your app:
Web Applications (`</>`): Generates the
firebaseConfigJavaScript object containingapiKey,authDomain, andprojectId.Android Applications (`Android Icon`): Requires your package name (e.g.
com.example.myapp) and generates thegoogle-services.jsonfile.iOS Applications (`Apple Icon`): Requires your iOS Bundle ID and generates the
GoogleService-Info.plistconfig file.
Comments and corrections