Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Functions Samples | 11,688 | 11 hours ago | 144 | apache-2.0 | JavaScript | |||||
Collection of sample apps showcasing popular use cases using Cloud Functions for Firebase | ||||||||||
Flutterfire | 7,785 | 847 | 201 | 2 days ago | 107 | September 22, 2022 | 311 | bsd-3-clause | Dart | |
🔥 A collection of Firebase plugins for Flutter apps. | ||||||||||
Gmscore | 5,655 | 5 days ago | 9 | February 01, 2022 | 793 | apache-2.0 | Java | |||
Free implementation of Play Services | ||||||||||
Quickstart Js | 4,744 | a day ago | 74 | apache-2.0 | HTML | |||||
Firebase Quickstart Samples for Web | ||||||||||
Aarogyasetu_android | 2,831 | 2 years ago | 445 | other | Java | |||||
Aarogya Setu Android app native code | ||||||||||
Cannercms | 2,430 | a month ago | 41 | apache-2.0 | JavaScript | |||||
⚡️ Content Management Framework creates custom CMS fast and easy. Support data sources such as Firebase/Firestore, GraphQL and Restful APIs. | ||||||||||
Santa Tracker Android | 2,085 | a year ago | 21 | other | Java | |||||
Ho Ho Ho | ||||||||||
Nativescript Plugin Firebase | 1,018 | 125 | 10 | 2 months ago | 159 | November 05, 2020 | 594 | mit | TypeScript | |
:fire: NativeScript plugin for Firebase | ||||||||||
Cordova Plugin Firebase | 996 | 204 | 5 | 2 years ago | 43 | October 10, 2018 | 253 | mit | Objective-C | |
Cordova plugin for Google Firebase | ||||||||||
Awesome Ionic | 807 | 3 years ago | 2 | cc0-1.0 | ||||||
An "awesome" list of Ionic resources |
This plugin brings push notifications, analytics, event tracking, crash reporting and more from Google Firebase to your Cordova project! Android and iOS supported.
>= 6
>= 6.4
>= 4
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
Great installation and setup guide by Medium.com - https://medium.com/@felipepucinelli/how-to-add-push...
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 <--
...
platforms/ios/\<My Project\>/Resources
for ios and platforms/android
for android.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
.
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.
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 API available for this plugin.