From bd9aa19788bb9b5b27a075b2cc5a75a56a939d87 Mon Sep 17 00:00:00 2001 From: Boris Tacyniak Date: Tue, 4 Aug 2020 07:47:42 +0200 Subject: [PATCH] Fix #1578. --- CHANGELOG.md | 15 +++++++++++++++ .../modules/RNPushNotificationAttributes.java | 2 -- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a013b8bf..f2a6f43a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## Unreleased + +### Breaking changes + +### Features + +### Fixed + + +## [5.0.1] 2020-08-04 + +### Fixed + +- (Android) Fix change that make gradle build fail. + ## [5.0.0] 2020-08-03 ### Breaking changes diff --git a/android/src/main/java/com/dieam/reactnativepushnotification/modules/RNPushNotificationAttributes.java b/android/src/main/java/com/dieam/reactnativepushnotification/modules/RNPushNotificationAttributes.java index d2e960da9..377d7caa7 100644 --- a/android/src/main/java/com/dieam/reactnativepushnotification/modules/RNPushNotificationAttributes.java +++ b/android/src/main/java/com/dieam/reactnativepushnotification/modules/RNPushNotificationAttributes.java @@ -72,7 +72,6 @@ public class RNPushNotificationAttributes { private final String group; private final boolean groupSummary; private final String messageId; - private final boolean userInteraction; private final boolean playSound; private final boolean vibrate; private final double vibration; @@ -333,7 +332,6 @@ public String toString() { ", group='" + group + '\'' + ", groupSummary='" + groupSummary + '\'' + ", messageId='" + messageId + '\'' + - ", userInteraction=" + userInteraction + ", playSound=" + playSound + ", vibrate=" + vibrate + ", vibration=" + vibration +