{"id":13801638,"url":"https://github.com/arnesson/cordova-plugin-firebase","last_synced_at":"2025-05-14T06:14:04.424Z","repository":{"id":55391571,"uuid":"60999466","full_name":"arnesson/cordova-plugin-firebase","owner":"arnesson","description":"Cordova plugin for Google Firebase","archived":false,"fork":false,"pushed_at":"2024-07-09T10:44:13.000Z","size":257897,"stargazers_count":1004,"open_issues_count":251,"forks_count":1551,"subscribers_count":64,"default_branch":"master","last_synced_at":"2025-05-01T09:08:09.075Z","etag":null,"topics":["cordova","crashlytics","firebase","google-firebase","notifications"],"latest_commit_sha":null,"homepage":"http://arnesson.github.io/cordova-plugin-firebase","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arnesson.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-06-13T01:51:46.000Z","updated_at":"2025-03-07T14:02:18.000Z","dependencies_parsed_at":"2024-08-19T17:34:42.350Z","dependency_job_id":null,"html_url":"https://github.com/arnesson/cordova-plugin-firebase","commit_stats":{"total_commits":506,"total_committers":85,"mean_commits":5.952941176470588,"dds":0.7845849802371542,"last_synced_commit":"a32b126274b90d62e8c2a20205a137bc11941b76"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arnesson%2Fcordova-plugin-firebase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arnesson%2Fcordova-plugin-firebase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arnesson%2Fcordova-plugin-firebase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arnesson%2Fcordova-plugin-firebase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arnesson","download_url":"https://codeload.github.com/arnesson/cordova-plugin-firebase/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253692536,"owners_count":21948317,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cordova","crashlytics","firebase","google-firebase","notifications"],"created_at":"2024-08-04T00:01:25.226Z","updated_at":"2025-05-14T06:14:04.371Z","avatar_url":"https://github.com/arnesson.png","language":"Objective-C","funding_links":[],"categories":["Cordova plugins"],"sub_categories":["Incompatible"],"readme":"# cordova-plugin-firebase\nThis plugin brings push notifications, analytics, event tracking, crash reporting and more from Google Firebase to your Cordova project!  Android and iOS supported.\n\n## Supported Cordova Versions\n- cordova: `\u003e= 6`\n- cordova-android: `\u003e= 6.4`\n- cordova-ios: `\u003e= 4`\n\n## Installation\nInstall the plugin by adding it to your project's config.xml:\n```\n\u003cplugin name=\"cordova-plugin-firebase\" spec=\"^2.0.0\" /\u003e\n```\nor by running:\n```\ncordova plugin add cordova-plugin-firebase --save\n```\n\n### Guides\nGreat installation and setup guide by Medium.com - [https://medium.com/@felipepucinelli/how-to-add-push...](https://medium.com/@felipepucinelli/how-to-add-push-notifications-in-your-cordova-application-using-firebase-69fac067e821)\n\n### Setup\nDownload 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](https://support.google.com/firebase/answer/7015592) for details on how to download the files.\n\n```\n- My Project/\n    platforms/\n    plugins/\n    www/\n    config.xml\n    google-services.json       \u003c--\n    GoogleService-Info.plist   \u003c--\n    ...\n```\n\n###### IMPORTANT NOTES\n- This plugin uses a hook (after prepare) that copies the configuration files to the right place, namely `platforms/ios/\\\u003cMy Project\\\u003e/Resources` for ios and `platforms/android` for android.\n- Firebase SDK requires the configuration files to be present and valid, otherwise your app will crash on boot or Firebase features won't work.\n\n### PhoneGap Build\nHooks 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`.\n\n### Google Play Services\nYour 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](https://github.com/dpa99c/cordova-android-play-services-gradle-release).\n\nIf your build is still failing, you can try installing [cordova-android-firebase-gradle-release](https://github.com/dpa99c/cordova-android-firebase-gradle-release).  For more info, read the following [comment](https://github.com/dpa99c/cordova-plugin-request-location-accuracy/issues/50#issuecomment-390025013) 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.\n\n## Google Tag Manager\n\nCheckout our [guide](docs/GOOGLE_TAG_MANAGER.md) for info on setting up Google Tag Manager.\n\n## Configuring Notifications\n\nCheckout our [guide](docs/NOTIFICATIONS.md) for info on configuring notification icons and colors.\n\n## API\n\nSee the full [API](docs/API.md) available for this plugin.\n\n## Supporters\n\n[PassportReader](https://passportreader.app) identity verification API - Get started for free - $0.01 per verification\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farnesson%2Fcordova-plugin-firebase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farnesson%2Fcordova-plugin-firebase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farnesson%2Fcordova-plugin-firebase/lists"}