Skip to content

Commit 1fe5998

Browse files
Merge pull request #8 from CoderGamester/develop
Release 0.2.3
2 parents 1e0a399 + de89bd2 commit 1fe5998

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
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.2.3] - 2020-08-12
8+
9+
**Fixed**:
10+
- Fixed build errors
11+
712
## [0.2.2] - 2020-08-12
813

914
**Fixed**:

Runtime/NativeUiService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public static class NativeUiService
3535
public static void ShowAlertPopUp(bool isAlertSheet, string title, string message, params AlertButton[] buttons)
3636
{
3737
#if UNITY_EDITOR
38-
Debug.Log($"Show Alert Pop Up is not available in the editor and was triggered with: {title} - {message}")
38+
Debug.Log($"Show Alert Pop Up is not available in the editor and was triggered with: {title} - {message}");
3939
#elif UNITY_IOS
4040
_currentButtons = buttons ?? throw new ArgumentException("The buttons count must be higher than zero");
4141

@@ -82,7 +82,7 @@ public static void ShowAlertPopUp(bool isAlertSheet, string title, string messag
8282
public static void ShowToastMessage(string message, bool isLongDuration)
8383
{
8484
#if UNITY_EDITOR
85-
Debug.Log($"Show Toast message is not available in the editor and was triggered with: {message}")
85+
Debug.Log($"Show Toast message is not available in the editor and was triggered with: {message}");
8686
#elif UNITY_IOS
8787
ToastMessage(message, isLongDuration);
8888
#elif UNITY_ANDROID

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.nativeui",
33
"displayName": "Native UI",
4-
"version": "0.2.2",
4+
"version": "0.2.3",
55
"unity": "2019.4",
66
"description": "This package provides the OS functionality to show the native UI alerts, Game Review PopUp and message Toasts",
77
"type": "library"

0 commit comments

Comments
 (0)