All Projects → arnesson → Cordova Plugin Firebase

arnesson / Cordova Plugin Firebase

Licence: mit
Cordova plugin for Google Firebase

Projects that are alternatives of or similar to Cordova Plugin Firebase

Laravel Fcm
🌐 A Laravel package to send Push Notifications to one or many devices of the user.
Stars: ✭ 56 (-94.38%)
Mutual labels:  firebase, notifications
Laravel Fcm
Firebase Cloud Messaging (FCM) sender for Laravel
Stars: ✭ 129 (-87.06%)
Mutual labels:  firebase, notifications
Fabricplugin
Fabric.io plugin for Cordova or Phonegap
Stars: ✭ 201 (-79.84%)
Mutual labels:  crashlytics, cordova
Nativescript Plugin Firebase
🔥 NativeScript plugin for Firebase
Stars: ✭ 990 (-0.7%)
Mutual labels:  firebase, crashlytics
Actingweb firstapp
Starter app for Flutter that includes many different production app features; some not typically included in demo apps.
Stars: ✭ 224 (-77.53%)
Mutual labels:  firebase, crashlytics
React Native Fcm
react native module for firebase cloud messaging and local notification
Stars: ✭ 1,729 (+73.42%)
Mutual labels:  firebase, notifications
React Native Firebase
🔥 A well-tested feature-rich modular Firebase implementation for React Native. Supports both iOS & Android platforms for all Firebase services.
Stars: ✭ 9,674 (+870.31%)
Mutual labels:  firebase, crashlytics
Angularfire
The official Angular library for Firebase.
Stars: ✭ 7,029 (+605.02%)
Mutual labels:  firebase, notifications
Taxi Booking App
This is a complete ride booking app, It uses google maps cordova plugin, firebase database and onesignal as notification provider.
Stars: ✭ 212 (-78.74%)
Mutual labels:  firebase, cordova
Beaver
Android MVVM + Dagger 2 (Hilt) + JetPack project template
Stars: ✭ 144 (-85.56%)
Mutual labels:  firebase, crashlytics
Analyticskit
Analytics framework for iOS
Stars: ✭ 355 (-64.39%)
Mutual labels:  firebase, crashlytics
Push Fcm Plugin
Official Firebase Cloud Messaging plugin for Push.js v1.0 🔥
Stars: ✭ 37 (-96.29%)
Mutual labels:  firebase, notifications
Gpudashboard
A simple dashboard for NVIDIA GPU
Stars: ✭ 37 (-96.29%)
Mutual labels:  firebase
Ionic4
This repo contains example code for ionic4. Get Step by Step tutorial of this repo examples using https://ampersandacademy.com/tutorials/ionic-framework-4
Stars: ✭ 37 (-96.29%)
Mutual labels:  cordova
Reactgym
Workout-Tracking app built in ES6 using react, flux and ImmutableJS
Stars: ✭ 36 (-96.39%)
Mutual labels:  cordova
Fastlane Plugin Firebase test lab android
Test your app with Firebase Test Lab with ease using fastlane for Android
Stars: ✭ 39 (-96.09%)
Mutual labels:  firebase
Social Note
Social Note - Note-taking, sharing, time & location reminder
Stars: ✭ 38 (-96.19%)
Mutual labels:  firebase
Cl.kunder.webview
This cordova plugin enables you to open a second webview
Stars: ✭ 36 (-96.39%)
Mutual labels:  cordova
Discourse Push Notifications
Plugin for integrating Chrome and FireFox push notifications
Stars: ✭ 36 (-96.39%)
Mutual labels:  notifications
React Firebase
🔥 Sample React + Firebase setup
Stars: ✭ 35 (-96.49%)
Mutual labels:  firebase

Build Status

cordova-plugin-firebase

This plugin brings push notifications, analytics, event tracking, crash reporting and more from Google Firebase to your Cordova project! Android and iOS supported.

Supported Cordova Versions

  • cordova: >= 6
  • cordova-android: >= 6.4
  • cordova-ios: >= 4

Installation

Install the plugin by adding it to your project's config.xml:

<plugin name="cordova-plugin-firebase" spec="^2.0.0" />

or by running:

cordova plugin add cordova-plugin-firebase --save

Guides

Great installation and setup guide by Medium.com - https://medium.com/@felipepucinelli/how-to-add-push...

Setup

Download your Firebase configuration files, GoogleService-Info.plist for iOS and google-services.json for android, and place them in the root folder of your cordova project. Check out this firebase article for details on how to download the files.

- My Project/
    platforms/
    plugins/
    www/
    config.xml
    google-services.json       <--
    GoogleService-Info.plist   <--
    ...
IMPORTANT NOTES
  • This plugin uses a hook (after prepare) that copies the configuration files to the right place, namely platforms/ios/\<My Project\>/Resources for ios and platforms/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.

PhoneGap Build

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.

Google Play Services

Your build may fail if you are installing multiple plugins that use Google Play Services. This is caused by the plugins installing different versions of the Google Play Services library. This can be resolved by installing cordova-android-play-services-gradle-release.

If your build is still failing, you can try installing cordova-android-firebase-gradle-release. For more info, read the following comment about locking down the specific versions for play services and firebase. It is suggested to use + instead of 15.+ to ensure the correct versions are used.

Google Tag Manager

Checkout our guide for info on setting up Google Tag Manager.

Configuring Notifications

Checkout our guide for info on configuring notification icons and colors.

API

See the full API available for this plugin.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].