[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-01-19 UTC."],[],[],null,["# FirebaseApp interface\n\nA [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface) holds the initialization information for a collection of services.\n\nDo not call this constructor directly. Instead, use [initializeApp()](./app.md#initializeapp_cb2f5e1) to create an app.\n\n**Signature:** \n\n export interface FirebaseApp \n\nProperties\n----------\n\n| Property | Type | Description |\n|--------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|\n| [automaticDataCollectionEnabled](./app.firebaseapp.md#firebaseappautomaticdatacollectionenabled) | boolean | The settable config flag for GDPR opt-in/opt-out |\n| [name](./app.firebaseapp.md#firebaseappname) | string | The (read-only) name for this app.The default app's name is `\"[DEFAULT]\"`. |\n| [options](./app.firebaseapp.md#firebaseappoptions) | [FirebaseOptions](./app.firebaseoptions.md#firebaseoptions_interface) | The (read-only) configuration options for this app. These are the original parameters given in [initializeApp()](./app.md#initializeapp_cb2f5e1). |\n\nFirebaseApp.automaticDataCollectionEnabled\n------------------------------------------\n\nThe settable config flag for GDPR opt-in/opt-out\n\n**Signature:** \n\n automaticDataCollectionEnabled: boolean;\n\nFirebaseApp.name\n----------------\n\nThe (read-only) name for this app.\n\nThe default app's name is `\"[DEFAULT]\"`.\n\n**Signature:** \n\n readonly name: string;\n\n### Example 1\n\n // The default app's name is \"[DEFAULT]\"\n const app = initializeApp(defaultAppConfig);\n console.log(app.name); // \"[DEFAULT]\"\n\n### Example 2\n\n // A named app's name is what you provide to initializeApp()\n const otherApp = initializeApp(otherAppConfig, \"other\");\n console.log(otherApp.name); // \"other\"\n\nFirebaseApp.options\n-------------------\n\nThe (read-only) configuration options for this app. These are the original parameters given in [initializeApp()](./app.md#initializeapp_cb2f5e1).\n\n**Signature:** \n\n readonly options: FirebaseOptions;\n\n### Example\n\n const app = initializeApp(config);\n console.log(app.options.databaseURL === config.databaseURL); // true"]]