This plugin brings push notifications, analytics, event tracking, crash reporting and more from Google Firebase to your Cordova project! Android and iOS supported.
- cordova:
>= 6
- cordova-android:
>= 6.4
- cordova-ios:
>= 4
Install the plugin by adding it to your project's config.xml:
<plugin name="cordova-plugin-firebase" spec="^2.1.0" />
or by running:
$ cordova plugin add cordova-plugin-firebase --save
Great installation and setup guide by Medium.com - https://medium.com/@felipepucinelli/how-to-add-push...
- This plugin uses a hook (after prepare) that copies the configuration files to the right place, namely
platforms/ios/\<My Project\>/Resources
for ios andplatforms/android
for android. - Firebase SDK requires the configuration files to be present and valid, otherwise your app will crash on boot or Firebase features won't work.
Hooks do not work with PhoneGap Build. This means you will have to manually make sure the configuration files are included. One way to do that is to make a private fork of this plugin and replace the placeholder config files (see src/ios
and src/android
) with your actual ones, as well as hard coding your app id and api key in plugin.xml
.
Checkout our guide for info on setting up Google Tag Manager.
Checkout our guide for info on configuring notification icons and colors.
See the full documentation API available for this plugin.