Unofficial Capacitor plugin for Firebase App.1
Stay up to date with the latest news and updates about the Capawesome, Capacitor, and Ionic ecosystem by subscribing to our Capawesome Newsletter.
| Plugin Version | Capacitor Version | Status |
|---|---|---|
| 8.x.x | >=8.x.x | Active support |
| 7.x.x | 7.x.x | Deprecated |
| 6.x.x | 6.x.x | Deprecated |
| 5.x.x | 5.x.x | Deprecated |
| 1.x.x | 4.x.x | Deprecated |
You can use our AI-Assisted Setup to install the plugin. Add the Capawesome Skills to your AI tool using the following command:
npx skills add capawesome-team/skills --skill capacitor-pluginsThen use the following prompt:
Use the `capacitor-plugins` skill from `capawesome-team/skills` to install the `@capacitor-firebase/app` plugin in my project.
If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
npm install @capacitor-firebase/app firebase
npx cap syncAdd Firebase to your project if you haven't already (Android / iOS / Web).
If needed, you can define the following project variable in your app’s variables.gradle file to change the default version of the dependency:
$firebaseCommonVersionversion ofcom.google.firebase:firebase-common(default:22.0.1)
This can be useful if you encounter dependency conflicts with other plugins in your project.
Add the following to your capacitor.config.json (or capacitor.config.ts) to avoid a SwiftPM package identity collision:
{
"experimental": {
"ios": {
"spm": {
"packageOptions": {
"@capacitor-firebase/app": {
"symlink": true
}
}
}
}
}
}Attention: SPM packageOptions support requires Capacitor CLI 8.4.0+.
No configuration required for this plugin.
A working example can be found here: robingenz/capacitor-firebase-plugin-demo
import { FirebaseApp } from '@capacitor-firebase/app';
const getName = async () => {
const result = await FirebaseApp.getName();
};
const getOptions = async () => {
const result = await FirebaseApp.getOptions();
};getName() => Promise<GetNameResult>Get the name for this app.
Returns: Promise<GetNameResult>
Since: 0.1.0
getOptions() => Promise<GetOptionsResult>Get the configuration options for this app.
Returns: Promise<GetOptionsResult>
Since: 0.1.0
| Prop | Type | Description | Since |
|---|---|---|---|
name |
string |
The unique name of this app. | 0.1.0 |
| Prop | Type | Description | Since |
|---|---|---|---|
apiKey |
string |
API key used for authenticating requests from your app. | 0.1.0 |
applicationId |
string |
Google App ID used to uniquely identify an instance of an app. | 0.1.0 |
databaseUrl |
string |
The database root URL. | 0.1.0 |
gcmSenderId |
string |
The Project Number. | 0.1.0 |
projectId |
string |
The Google Cloud project ID. | 0.1.0 |
storageBucket |
string |
The Google Cloud Storage bucket name. | 0.1.0 |
See CHANGELOG.md.
See LICENSE.
Footnotes
-
This project is not affiliated with, endorsed by, sponsored by, or approved by Google LLC or any of their affiliates or subsidiaries. ↩