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.
- package/CHANGELOG.md +6 -0
- package/Editor/AmaGDKEditor.cs +1 -1
- package/Editor/AmaGDKExtra.cs +3 -3
- package/Editor/EmbedRemoteConfigAssetInspector.cs +1 -1
- package/Editor/Extra/GDKAutoUpdateAdapter.cs +1 -1
- package/Editor/Extra/GDKCIBuildCommand.cs +6 -5
- package/Editor/Extra/GDKLocalBuild.cs +1 -1
- package/Editor/Extra/GDKPostBuildAsset.cs +1 -1
- package/Editor/Extra/SDKVersionTracking.cs +1 -1
- package/Editor/HideInNormalInspectorDrawer.cs +1 -1
- package/Editor/MatchSDKVersion.cs +0 -1
- package/Editor/Utils/AmaGDKEditor.ExtractVersion.Max.cs +1 -1
- package/Editor/Utils/AmaGDKEditor.ExtractVersion.cs +1 -1
- package/Editor/Utils/AmaGDKEditor.Utils.cs +1 -1
- package/Editor/Utils/GDKPackageInstaller.cs +1 -1
- package/Extra/AmaGDKInstaller.unitypackage +0 -0
- package/Extra/AutoEventQC.unitypackage +0 -0
- package/Extra/CheckDiskSpace.unitypackage +0 -0
- package/Extra/Consent.unitypackage +0 -0
- package/Extra/CrashlyticHook.unitypackage +0 -0
- package/Extra/ForceUpdate.unitypackage +0 -0
- package/Extra/LegacyGDKUpdateHelper.unitypackage +0 -0
- package/Extra/PostProcessor.unitypackage +0 -0
- package/Packages/AmaGDKConfig.unitypackage +0 -0
- package/Packages/AmaGDKExample.unitypackage +0 -0
- package/Packages/AmaGDKTest.unitypackage +0 -0
- package/Packages/AppsFlyerAdapter.PurchaseConnector.unitypackage +0 -0
- package/Packages/AppsFlyerAdapter.unitypackage +0 -0
- package/Packages/FirebaseAnalyticsAdapter.unitypackage +0 -0
- package/Packages/FirebaseRemoteConfigAdapter.unitypackage +0 -0
- package/Packages/IronSourceAdapter.unitypackage +0 -0
- package/Packages/MaxAdNetworkAdapter.unitypackage +0 -0
- package/Packages/RevenueCatAdapter.unitypackage +0 -0
- package/Packages/SqliteAnalyticsAdapter.unitypackage +0 -0
- package/Runtime/AmaGDK.cs +1 -1
- package/Runtime/UI/ScrollView/Editor/GDKScrollViewEditor.cs +1 -1
- 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
|
package/Editor/AmaGDKEditor.cs
CHANGED
|
@@ -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.
|
|
18
|
+
namespace Amanotes.Core
|
|
19
19
|
{
|
|
20
20
|
[CustomEditor(typeof(AmaGDK))]
|
|
21
21
|
internal class AmaGDKEditor : UnityEditor.Editor
|
package/Editor/AmaGDKExtra.cs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
using System.Collections.Generic;
|
|
2
|
-
using
|
|
2
|
+
using UnityEditor;
|
|
3
3
|
|
|
4
|
-
namespace Amanotes.
|
|
4
|
+
namespace Amanotes.Core
|
|
5
5
|
{
|
|
6
|
-
public class AmaGDKExtra :
|
|
6
|
+
public class AmaGDKExtra : Editor
|
|
7
7
|
{
|
|
8
8
|
public static Dictionary<string, object> GetThirdPartyVersions()
|
|
9
9
|
{
|
|
@@ -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.
|
|
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.
|
|
15
|
+
namespace Amanotes.Core
|
|
16
16
|
{
|
|
17
17
|
[CreateAssetMenu(fileName = "GDKPostBuildAsset", menuName = "Ama GDK/GDKPostBuildAsset", order = 1)]
|
|
18
18
|
public class GDKPostBuildAsset : ScriptableObject
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
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.
|
|
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;
|