npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cordova-android-firebase-gradle-release

v4.0.0

Published

Cordova/Phonegap plugin for Android to align versions of the Firebase library components specified by other plugins to a specific version.

Downloads

649

Readme

cordova-android-firebase-gradle-release Latest Stable Version Total Downloads

Cordova/Phonegap plugin for Android to align versions of the Firebase library components specified by other plugins to a specific version.

Table of Contents

Purpose

TL;DR: To prevent build failures caused by Cordova plugins including different versions of Firebase library components.

To resolve these version collisions, this plugin injects a Gradle configuration file into the native Android platform project, which overrides any versions specified by other plugins, and forces them to the version specified in its Gradle file.

If you're encountering similar problems with the Android Support or Play Services libraries, checkout the sister plugins:

Requirements

This plugin requires cordova@8+ (CLI) and cordova-android@7+ (Android platform). Since the plugin uses hook scripts it will not work in Cloud Build environments such as Phonegap Build.

Installation

# override using default component versions
$ cordova plugin add cordova-android-firebase-gradle-release

## override using custom component versions 
$ cordova plugin add cordova-android-firebase-gradle-release  --variable firebase-core=17.0.0 --variable firebase-messaging=19.0.0

Component versions

This plugin enables overriding the version of the following Firebase SDK library components:

Firebase Core	com.google.firebase:firebase-core
Ads	com.google.firebase:firebase-ads
Analytics	com.google.firebase:firebase-analytics
App Indexing	com.google.firebase:firebase-appindexing
Authentication	com.google.firebase:firebase-auth
Cloud Firestore	com.google.firebase:firebase-firestore
Cloud Functions	com.google.firebase:firebase-functions
Cloud Messaging	com.google.firebase:firebase-messaging
Cloud Storage	com.google.firebase:firebase-storage
Crash Reporting	com.google.firebase:firebase-crash
Crashlytics	com.crashlytics.sdk.android:crashlytics
Dynamic Links	com.google.firebase:firebase-dynamic-links
Invites	com.google.firebase:firebase-invites
In-App Messaging	com.google.firebase:firebase-inappmessaging
In-App Messaging Display	com.google.firebase:firebase-inappmessaging-display
ML Kit: Vision APIs	com.google.firebase:firebase-ml-vision
ML Kit: Image Labeling Model	com.google.firebase:firebase-ml-vision-image-label-model
ML Kit: Face Detection Model	com.google.firebase:firebase-ml-vision-face-model
ML Kit: Object Detection and Tracking Model	com.google.firebase:firebase-ml-vision-object-detection-model
ML Kit: Natural Language APIs	com.google.firebase:firebase-ml-natural-language
ML Kit: Language Identification Model	com.google.firebase:firebase-ml-natural-language-language-id-model
ML Kit: Translate Model	com.google.firebase:firebase-ml-natural-language-translate-model
ML Kit: Smart Reply Model	com.google.firebase:firebase-ml-natural-language-smart-reply-model
ML Kit: Custom Model APIs	com.google.firebase:firebase-ml-model-interpreter
ML Kit: AutoML Vision Edge API	com.google.firebase:firebase-ml-vision-automl
Performance Monitoring	com.google.firebase:firebase-perf
Realtime Database	com.google.firebase:firebase-database
Remote Config	com.google.firebase:firebase-config

Default version

By default, this plugin pins a recent major version of each of the Firebase library components. You can see what the currently pinned versions are by looking at the <preference>'s in the plugin.xml.

Other versions

You may want to specify a version the Firebase library components - see here for a list recent versions.

Library component versions are specified in the Android build as Gradle artifacts in the format packageId:componentId:versionNumber, for example com.google.firebase:firebase-core:17.0.0. To override the default version when installing this plugin, specify a plugin variable where then variable key is the component ID and the value is the version number. For example, if you want to install v17.0.0 of the Firebase Core library component, you'd specify the version via the variable:

cordova plugin add cordova-android-firebase-gradle-release --variable firebase-core=17.0.0

You can also specify the the overrides directly in the config.xml and this plugin will find them, for example:

<plugin name="cordova-android-firebase-gradle-release" spec="^4.0.0">
    <variable name="firebase-core" value="17.0.0" />
</plugin>

Or in the package.json, e.g.:

{
    "cordova": {
        "plugins": {
            "cordova-android-firebase-gradle-release": {
                "firebase-core": "17.0.0"
                }        
            }
        }
    }
}           

Note: the plugin is case-insensitive to the component ID so firebase-core or FIREBASE-CORE will both work.

Credits

Thanks to Chris Scott, Transistor Software for his idea of extending the initial implementation to support dynamic specification of the library version via a plugin variable in cordova-google-api-version

License

The MIT License

Copyright (c) 2018 Dave Alden / Working Edge Ltd.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.