com.amanotes.gdk 0.2.90 → 0.2.91

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,3 +1,6 @@
1
+ ## [0.2.91] - 2025-08-22
2
+ - [Fix] CI Configuration
3
+
1
4
  ## [0.2.90] - 2025-08-05
2
5
  - [Fix] Null Exception when ad load failed
3
6
  - [Fix] Don't cancel unity build jobs
@@ -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
  {
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.91";
31
31
 
32
32
  internal static Status _status = Status.None;
33
33
  internal static ConfigAsset _config = null;
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.91",
4
4
  "displayName": "AmaGDK",
5
5
  "description": "Amanotes Game Development Kit",
6
6
  "unity": "2020.3",