com.amanotes.gdk 0.2.6 → 0.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.7 - 2023-06-09]
4
+ ### Fix log single adapter
5
+
3
6
  ## [0.2.6 - 2023-06-08]
4
7
  ### Update AmaPassport
5
8
  ### Fix JSON parse in RemoteConfig
Binary file
Binary file
Binary file
Binary file
@@ -91,13 +91,13 @@ namespace Amanotes.Core.Internal
91
91
 
92
92
  if (adapters == null || adapters.Count < 1)
93
93
  {
94
- LogError($"Not found adapter for <{nameof(T)}>!");
94
+ Log($"Not found adapter for <{typeof(T)}>!");
95
95
  return null;
96
96
  }
97
97
 
98
98
  if (adapters.Count > 1)
99
99
  {
100
- LogError($"Multiple adapters detected. <{nameof(T)}> supports only one adapter!");
100
+ LogError($"Multiple adapters detected. <{typeof(T)}> supports only one adapter!");
101
101
  return null;
102
102
  }
103
103
 
package/Runtime/AmaGDK.cs CHANGED
@@ -9,7 +9,7 @@ namespace Amanotes.Core
9
9
  {
10
10
  public partial class AmaGDK : MonoBehaviour
11
11
  {
12
- public const string VERSION = "0.2.6";
12
+ public const string VERSION = "0.2.7";
13
13
 
14
14
  internal static AmaGDK _instance;
15
15
  internal static Status _status = Status.None;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.amanotes.gdk",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "displayName": "AmaGDK",
5
5
  "description": "Amanotes Game Development Kit",
6
6
  "unity": "2020.3",