com.amanotes.gdk 0.2.91 → 0.2.93

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.
Files changed (37) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/Editor/AmaGDKEditor.cs +1 -1
  3. package/Editor/AmaGDKExtra.cs +3 -3
  4. package/Editor/EmbedRemoteConfigAssetInspector.cs +1 -1
  5. package/Editor/Extra/GDKAutoUpdateAdapter.cs +1 -1
  6. package/Editor/Extra/GDKLocalBuild.cs +1 -1
  7. package/Editor/Extra/GDKPostBuildAsset.cs +1 -1
  8. package/Editor/Extra/SDKVersionTracking.cs +1 -1
  9. package/Editor/HideInNormalInspectorDrawer.cs +1 -1
  10. package/Editor/MatchSDKVersion.cs +0 -1
  11. package/Editor/Utils/AmaGDKEditor.ExtractVersion.Max.cs +1 -1
  12. package/Editor/Utils/AmaGDKEditor.ExtractVersion.cs +1 -1
  13. package/Editor/Utils/AmaGDKEditor.Utils.cs +1 -1
  14. package/Editor/Utils/GDKPackageInstaller.cs +1 -1
  15. package/Extra/AmaGDKInstaller.unitypackage +0 -0
  16. package/Extra/AutoEventQC.unitypackage +0 -0
  17. package/Extra/CheckDiskSpace.unitypackage +0 -0
  18. package/Extra/Consent.unitypackage +0 -0
  19. package/Extra/CrashlyticHook.unitypackage +0 -0
  20. package/Extra/ForceUpdate.unitypackage +0 -0
  21. package/Extra/LegacyGDKUpdateHelper.unitypackage +0 -0
  22. package/Extra/PostProcessor.unitypackage +0 -0
  23. package/Packages/AmaGDKConfig.unitypackage +0 -0
  24. package/Packages/AmaGDKExample.unitypackage +0 -0
  25. package/Packages/AmaGDKTest.unitypackage +0 -0
  26. package/Packages/AppsFlyerAdapter.PurchaseConnector.unitypackage +0 -0
  27. package/Packages/AppsFlyerAdapter.unitypackage +0 -0
  28. package/Packages/FirebaseAnalyticsAdapter.unitypackage +0 -0
  29. package/Packages/FirebaseRemoteConfigAdapter.unitypackage +0 -0
  30. package/Packages/IronSourceAdapter.unitypackage +0 -0
  31. package/Packages/MaxAdNetworkAdapter.unitypackage +0 -0
  32. package/Packages/RevenueCatAdapter.unitypackage +0 -0
  33. package/Packages/SqliteAnalyticsAdapter.unitypackage +0 -0
  34. package/Runtime/Ad/AdLogic.cs +2 -0
  35. package/Runtime/AmaGDK.cs +1 -1
  36. package/Runtime/UI/ScrollView/Editor/GDKScrollViewEditor.cs +1 -1
  37. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [0.2.93] - 2025-10-31
2
+ - [Dev] Upgrade dev project to 2021.3.45f2
3
+ - [Fix] Cancel redundant LoadAdsRoutine
4
+ - [Dev] Remove '.Editor' in namespace to reduce compiler confusion (ClassName vs Namespace)
5
+
6
+ ## [0.2.92] - 2025-09-25
7
+ - [Dev] Remove '.Editor' in namespace to reduce compiler confusion (ClassName vs Namespace)
8
+
1
9
  ## [0.2.91] - 2025-08-22
2
10
  - [Fix] CI Configuration
3
11
 
@@ -15,7 +15,7 @@ using Amanotes.Core.Internal;
15
15
  using static Amanotes.Core.GDKDebug;
16
16
  using static Amanotes.Core.AmaGDK.AdapterID;
17
17
 
18
- namespace Amanotes.Editor
18
+ namespace Amanotes.Core
19
19
  {
20
20
  [CustomEditor(typeof(AmaGDK))]
21
21
  internal class AmaGDKEditor : UnityEditor.Editor
@@ -1,9 +1,9 @@
1
1
  using System.Collections.Generic;
2
- using Amanotes.Core;
2
+ using UnityEditor;
3
3
 
4
- namespace Amanotes.Editor
4
+ namespace Amanotes.Core
5
5
  {
6
- public class AmaGDKExtra : UnityEditor.Editor
6
+ public class AmaGDKExtra : Editor
7
7
  {
8
8
  public static Dictionary<string, object> GetThirdPartyVersions()
9
9
  {
@@ -6,7 +6,7 @@ using UnityEngine;
6
6
 
7
7
  using static Amanotes.Core.GDKDebug;
8
8
 
9
- namespace Amanotes.Editor
9
+ namespace Amanotes.Core
10
10
  {
11
11
  [CustomEditor(typeof(EmbedRemoteConfigAsset))]
12
12
  internal class EmbedRemoteConfigAssetInspector : UnityEditor.Editor
@@ -4,7 +4,7 @@ using System.Collections.Generic;
4
4
  using UnityEditor;
5
5
  using UnityEngine;
6
6
 
7
- namespace Amanotes.Editor
7
+ namespace Amanotes.Core
8
8
  {
9
9
  internal class GDKAutoUpdateAdapter: AssetPostprocessor
10
10
  {
@@ -9,7 +9,7 @@ using UnityEngine.Events;
9
9
  using Debug = UnityEngine.Debug;
10
10
  using UnityObject = UnityEngine.Object;
11
11
 
12
- namespace Amanotes.Editor
12
+ namespace Amanotes.Core
13
13
  {
14
14
  [CreateAssetMenu(menuName = "Ama GDK/Local Build Config", fileName = "LocalBuild")]
15
15
  public class GDKLocalBuild : ScriptableObject
@@ -12,7 +12,7 @@ using UnityEditor.iOS.Xcode;
12
12
  using UnityEditor.iOS.Xcode.Extensions;
13
13
  #endif
14
14
 
15
- namespace Amanotes.Editor
15
+ namespace Amanotes.Core
16
16
  {
17
17
  [CreateAssetMenu(fileName = "GDKPostBuildAsset", menuName = "Ama GDK/GDKPostBuildAsset", order = 1)]
18
18
  public class GDKPostBuildAsset : ScriptableObject
@@ -20,7 +20,7 @@ using System.Reflection;
20
20
  using UnityEditor.iOS.Xcode;
21
21
  #endif
22
22
 
23
- namespace Amanotes.Editor
23
+ namespace Amanotes.Core
24
24
  {
25
25
  public partial class SDKVersionTracking
26
26
  {
@@ -2,7 +2,7 @@ using UnityEngine;
2
2
  using UnityEngine.UIElements;
3
3
  using UnityEditor;
4
4
 
5
- namespace Amanotes.Core.Editor
5
+ namespace Amanotes.Core
6
6
  {
7
7
  [CustomPropertyDrawer(typeof(HideInNormalInspectorAttribute))]
8
8
  public class HideInNormalInspectorDrawer : PropertyDrawer
@@ -6,7 +6,6 @@ using System.Linq;
6
6
  using System;
7
7
  using System.Text.RegularExpressions;
8
8
  using Amanotes.Core.Internal;
9
- using Amanotes.Editor;
10
9
 
11
10
  namespace Amanotes.Core
12
11
  {
@@ -3,7 +3,7 @@ using System.IO;
3
3
  using System.Linq;
4
4
  using System.Xml.Linq;
5
5
 
6
- namespace Amanotes.Editor
6
+ namespace Amanotes.Core
7
7
  {
8
8
  public class Versions
9
9
  {
@@ -16,7 +16,7 @@ using UnityEditor;
16
16
  using UnityEngine;
17
17
  using static Amanotes.Core.AmaGDK.AdapterID;
18
18
 
19
- namespace Amanotes.Editor
19
+ namespace Amanotes.Core
20
20
  {
21
21
  internal class IronSourceSDKAdapter
22
22
  {
@@ -5,7 +5,7 @@ using UnityEditor;
5
5
  using UnityEngine;
6
6
  using UnityEngine.Networking;
7
7
 
8
- namespace Amanotes.Editor
8
+ namespace Amanotes.Core
9
9
  {
10
10
  internal static class Utils
11
11
  {
@@ -8,7 +8,7 @@ using UnityEditor.PackageManager;
8
8
  using UnityEditor.PackageManager.Requests;
9
9
  using UnityEngine;
10
10
 
11
- namespace Amanotes.Editor
11
+ namespace Amanotes.Core
12
12
  {
13
13
  [System.Serializable]
14
14
  internal class ScopedRegistry
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -40,6 +40,7 @@ namespace Amanotes.Core.Internal
40
40
  }
41
41
 
42
42
  Log("[Ad] StartLoadAd");
43
+ _loadRoutine?.StopRoutine();
43
44
  _loadRoutine = GDKUtils.StartCoroutine(LoadAdRoutine());
44
45
  }
45
46
 
@@ -256,6 +257,7 @@ namespace Amanotes.Core.Internal
256
257
  OnAdShowReadyStatus(true, AdShowReadyStatus.Ready);
257
258
  TriggerBeforeAdShow();
258
259
  #if !UNITY_EDITOR && UNITY_ANDROID
260
+ _handleAdActivityKilledRoutine?.StopRoutine();
259
261
  _handleAdActivityKilledRoutine = GDKUtils.StartCoroutine(HandleAdActivityKilledSilently());
260
262
  #endif
261
263
  ShowAd();
package/Runtime/AmaGDK.cs CHANGED
@@ -27,7 +27,7 @@ namespace Amanotes.Core
27
27
  {
28
28
  public partial class AmaGDK : MonoBehaviour
29
29
  {
30
- public const string VERSION = "0.2.91";
30
+ public const string VERSION = "0.2.93";
31
31
 
32
32
  internal static Status _status = Status.None;
33
33
  internal static ConfigAsset _config = null;
@@ -4,7 +4,7 @@ using Amanotes.Core.Internal;
4
4
  using UnityEditor;
5
5
  using UnityEditor.UI;
6
6
 
7
- namespace Amanotes.Editor
7
+ namespace Amanotes.Core
8
8
  {
9
9
  [CustomEditor(typeof(GDKScrollView))]
10
10
  public class GDKScrollViewEditor : ScrollRectEditor
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.amanotes.gdk",
3
- "version": "0.2.91",
3
+ "version": "0.2.93",
4
4
  "displayName": "AmaGDK",
5
5
  "description": "Amanotes Game Development Kit",
6
6
  "unity": "2020.3",