Skip to content

Commit 1ad623b

Browse files
author
Miguel Tomas
committed
**Fixed**:
- Fixed build error for Android
1 parent 5560c61 commit 1ad623b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this package will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [0.1.4] - 2020-08-03
8+
9+
**Fixed**:
10+
- Fixed build error for Android
11+
712
## [0.1.3] - 2020-08-03
813

914
**Fixed**:

Runtime/Android/AndroidGameNotification.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class AndroidGameNotification : IGameNotification
4242
/// <see cref="AndroidNotificationsPlatform"/> if <see cref="AndroidNotificationsPlatform.DefaultChannelId"/> is set
4343
/// </remarks>
4444
/// <value>The value of <see cref="DeliveredChannel"/>.</value>
45-
public string Group { get => DeliveredChannel; set => DeliveredChannel = value; }
45+
public string Channel { get => DeliveredChannel; set => DeliveredChannel = value; }
4646

4747
/// <inheritdoc />
4848
public int? BadgeNumber

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.gamelovers.notificationservice",
33
"displayName": "Notification Service",
4-
"version": "0.1.3",
4+
"version": "0.1.4",
55
"unity": "2019.4",
66
"description": "This package provides an easier to use service to help manage the notification sent to mobile devices, and based on the Unity's Mobile Notifications package.\nIt allows to schedule local notifications, receive remote notifications and clear any type of notification.",
77
"dependencies": {

0 commit comments

Comments
 (0)