diff --git a/CHANGELOG.md b/CHANGELOG.md index f3e8afe..cbf5219 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 The changes documented here do not include those from the original repository. +## 5.0.0-OS12 + +### Features +- Feat: Android | Update dependency to Firebase Dynamic Links Android library (https://outsystemsrd.atlassian.net/browse/RMET-3608). + ## 5.0.0-OS11 ### Features diff --git a/package.json b/package.json index 0b8f5db..d4508b6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-firebase-dynamiclinks", - "version": "5.0.0-OS11", + "version": "5.0.0-OS12", "description": "Cordova plugin for Firebase Dynamic Links", "cordova": { "id": "cordova-plugin-firebase-dynamiclinks", diff --git a/plugin.xml b/plugin.xml index b108d24..0d923cd 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,7 +1,7 @@ + version="5.0.0-OS12"> FirebaseDynamicLinksPlugin Cordova plugin for Firebase Dynamic Links @@ -28,8 +28,6 @@ xmlns:android="http://schemas.android.com/apk/res/android" - - @@ -54,7 +52,7 @@ xmlns:android="http://schemas.android.com/apk/res/android" - + diff --git a/src/android/build.gradle b/src/android/build.gradle index 27f265f..5fef7ef 100644 --- a/src/android/build.gradle +++ b/src/android/build.gradle @@ -10,14 +10,7 @@ buildscript { } } -// use postBuildExtras to make sure the plugin is applied after -// cdvPluginPostBuildExtras. Therefore if googleServices is added -// to cdvPluginPostBuildExtras somewhere else, the plugin execution -// will be skipped and project build will be successfull -ext.postBuildExtras = { - if (project.extensions.findByName('googleServices') == null) { - // apply plugin: 'com.google.gms.google-services' - // class must be used instead of id(string) to be able to apply plugin from non-root gradle file - apply plugin: com.google.gms.googleservices.GoogleServicesPlugin - } +dependencies { + implementation platform('com.google.firebase:firebase-bom:33.2.0') + implementation("com.google.firebase:firebase-dynamic-links") }