com.amanotes.gdk 0.2.44 → 0.2.45

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.45 - 2023-12-13]
4
+ - [Fix] Able to assign ama_device_id in Editor
5
+
3
6
  ## [0.2.44 - 2023-12-08]
4
7
  - [Fix] Auto log Ad events
5
8
 
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -76,7 +76,7 @@ namespace Amanotes.Core
76
76
  set => _pseudoId = ValidateId(value, ALPHANUMERIC_PATTERN);
77
77
  }
78
78
 
79
- #if UNITY_ANDROID
79
+ #if UNITY_ANDROID && !UNITY_EDITOR
80
80
  public string AmaDeviceId
81
81
  {
82
82
  get => _amaDeviceId;
package/Runtime/AmaGDK.cs CHANGED
@@ -15,7 +15,7 @@ namespace Amanotes.Core
15
15
  {
16
16
  public partial class AmaGDK : MonoBehaviour
17
17
  {
18
- public const string VERSION = "0.2.44";
18
+ public const string VERSION = "0.2.45";
19
19
 
20
20
  internal static AmaGDK _instance;
21
21
  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.44",
3
+ "version": "0.2.45",
4
4
  "displayName": "AmaGDK",
5
5
  "description": "Amanotes Game Development Kit",
6
6
  "unity": "2019.4",