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 +3 -0
- package/Editor/Extra/GDKCIBuildCommand.cs +6 -5
- 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/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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
|
|
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.91";
|
|
31
31
|
|
|
32
32
|
internal static Status _status = Status.None;
|
|
33
33
|
internal static ConfigAsset _config = null;
|