diff --git a/CHANGELOG.md b/CHANGELOG.md index 773fade..cc04f40 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. +## [Version 2.3.2] + +### Features +- Feat: Android | Update dependency to Firebase Cloud Messaging Android library (https://outsystemsrd.atlassian.net/browse/RMET-3608). + ## [Version 2.3.1] ### Fixes diff --git a/package.json b/package.json index 3af9f9b..e2bbe45 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.outsystems.firebase.cloudmessaging", - "version": "2.3.1", + "version": "2.3.2", "description": "Outsystems plugin for Firebase Cloud Messaging", "keywords": [ "ecosystem:cordova", diff --git a/plugin.xml b/plugin.xml index fe48178..48106be 100644 --- a/plugin.xml +++ b/plugin.xml @@ -1,5 +1,5 @@ - + OSFirebaseCloudMessaging Outsystems plugin for Firebase Cloud Messaging diff --git a/src/android/com/outsystems/firebase/cloudmessaging/build.gradle b/src/android/com/outsystems/firebase/cloudmessaging/build.gradle index 28656c9..f6a64b4 100644 --- a/src/android/com/outsystems/firebase/cloudmessaging/build.gradle +++ b/src/android/com/outsystems/firebase/cloudmessaging/build.gradle @@ -23,13 +23,13 @@ apply plugin: 'kotlin-kapt' dependencies { implementation("com.github.outsystems:oscore-android:1.2.0@aar") implementation("com.github.outsystems:oscordova-android:2.0.1@aar") - implementation("com.github.outsystems:osfirebasemessaging-android:1.2.1@aar") + implementation("com.github.outsystems:osfirebasemessaging-android:1.2.2@aar") implementation("com.github.outsystems:oslocalnotifications-android:1.0.0@aar") implementation("com.google.code.gson:gson:2.8.9") - implementation platform('com.google.firebase:firebase-bom:29.3.1') - implementation("com.google.firebase:firebase-messaging-ktx") + implementation platform('com.google.firebase:firebase-bom:33.2.0') + implementation("com.google.firebase:firebase-messaging") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.2") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.2")