React Native Firebase
    Preparing search index...

    Base interface for FirebaseApp containing core properties and methods. The concrete FirebaseApp class implements this interface. Module-specific methods (auth(), analytics(), etc.) are added to FirebaseApp via declaration merging.

    interface FirebaseAppBase {
        automaticDataCollectionEnabled: boolean;
        name: string;
        options: FirebaseAppOptions;
        delete(): Promise<void>;
        utils(): Utils.Module;
    }

    Hierarchy (View Summary)

    Index

    Methods

    • Make this app unusable and free up resources.

      Returns Promise<void>

    Properties

    automaticDataCollectionEnabled: boolean

    The settable config flag for GDPR opt-in/opt-out

    name: string

    The name (identifier) for this App. '[DEFAULT]' is the default App.

    The (read-only) configuration options from the app initialization.