com.amanotes.gdk 0.2.90 → 0.2.92

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 +6 -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/GDKCIBuildCommand.cs +6 -5
  7. package/Editor/Extra/GDKLocalBuild.cs +1 -1
  8. package/Editor/Extra/GDKPostBuildAsset.cs +1 -1
  9. package/Editor/Extra/SDKVersionTracking.cs +1 -1
  10. package/Editor/HideInNormalInspectorDrawer.cs +1 -1
  11. package/Editor/MatchSDKVersion.cs +0 -1
  12. package/Editor/Utils/AmaGDKEditor.ExtractVersion.Max.cs +1 -1
  13. package/Editor/Utils/AmaGDKEditor.ExtractVersion.cs +1 -1
  14. package/Editor/Utils/AmaGDKEditor.Utils.cs +1 -1
  15. package/Editor/Utils/GDKPackageInstaller.cs +1 -1
  16. package/Extra/AmaGDKInstaller.unitypackage +0 -0
  17. package/Extra/AutoEventQC.unitypackage +0 -0
  18. package/Extra/CheckDiskSpace.unitypackage +0 -0
  19. package/Extra/Consent.unitypackage +0 -0
  20. package/Extra/CrashlyticHook.unitypackage +0 -0
  21. package/Extra/ForceUpdate.unitypackage +0 -0
  22. package/Extra/LegacyGDKUpdateHelper.unitypackage +0 -0
  23. package/Extra/PostProcessor.unitypackage +0 -0
  24. package/Packages/AmaGDKConfig.unitypackage +0 -0
  25. package/Packages/AmaGDKExample.unitypackage +0 -0
  26. package/Packages/AmaGDKTest.unitypackage +0 -0
  27. package/Packages/AppsFlyerAdapter.PurchaseConnector.unitypackage +0 -0
  28. package/Packages/AppsFlyerAdapter.unitypackage +0 -0
  29. package/Packages/FirebaseAnalyticsAdapter.unitypackage +0 -0
  30. package/Packages/FirebaseRemoteConfigAdapter.unitypackage +0 -0
  31. package/Packages/IronSourceAdapter.unitypackage +0 -0
  32. package/Packages/MaxAdNetworkAdapter.unitypackage +0 -0
  33. package/Packages/RevenueCatAdapter.unitypackage +0 -0
  34. package/Packages/SqliteAnalyticsAdapter.unitypackage +0 -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,9 @@
1
+ ## [0.2.92] - 2025-09-25
2
+ - [Dev] Remove '.Editor' in namespace to reduce compiler confusion (ClassName vs Namespace)
3
+
4
+ ## [0.2.91] - 2025-08-22
5
+ - [Fix] CI Configuration
6
+
1
7
  ## [0.2.90] - 2025-08-05
2
8
  - [Fix] Null Exception when ad load failed
3
9
  - [Fix] Don't cancel unity build jobs
@@ -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
  {
@@ -526,6 +526,12 @@ namespace Amanotes.Core
526
526
  LogInfo("=== Starting Unity Build Process ===");
527
527
 
528
528
  var buildTarget = GetBuildTarget();
529
+
530
+ // Configure build settings
531
+ HandleVersionConfiguration(buildTarget);
532
+ HandleAndroidConfiguration(buildTarget);
533
+ SetScriptingBackendFromEnv(buildTarget);
534
+
529
535
  var buildPath = GetBuildPath();
530
536
  var buildName = GetBuildName();
531
537
  var buildOptions = GetBuildOptions();
@@ -533,11 +539,6 @@ namespace Amanotes.Core
533
539
 
534
540
  LogInfo($"Build configuration: Target={buildTarget}, Path={fixedBuildPath}, Options={buildOptions}");
535
541
 
536
- // Configure build settings
537
- HandleVersionConfiguration(buildTarget);
538
- HandleAndroidConfiguration(buildTarget);
539
- SetScriptingBackendFromEnv(buildTarget);
540
-
541
542
  // Perform the build
542
543
  var buildPlayerOptions = new BuildPlayerOptions
543
544
  {
@@ -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
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.90";
30
+ public const string VERSION = "0.2.92";
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.90",
3
+ "version": "0.2.92",
4
4
  "displayName": "AmaGDK",
5
5
  "description": "Amanotes Game Development Kit",
6
6
  "unity": "2020.3",