Skip to content

Commit db57875

Browse files
author
Miguel Tomas
committed
**Fixed**:
- Fixed compiler warning for not using native code
1 parent d70cd8f commit db57875

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-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.2.3] - 2020-09-24
8+
9+
**Fixed**:
10+
- Fixed compiler warning for not using native code
11+
712
## [0.2.3] - 2020-08-12
813

914
**Fixed**:

Runtime/NativeUiService.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ public static void ShowToastMessage(string message, bool isLongDuration)
102102
#endif
103103
}
104104

105-
#if UNITY_IOS
105+
#if UNITY_EDITOR
106+
#elif UNITY_IOS
106107
public delegate void AlertButtonDelegate(string buttonText);
107108

108109
[System.Runtime.InteropServices.DllImport("__Internal")]

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.3",
4+
"version": "0.2.4",
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)