com.amanotes.gdk 0.2.101 → 0.2.104
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 +10 -0
- package/Editor/Extra/GDKCIBuildCommand.cs +1 -0
- 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/Ad/AdLogic.cs +11 -2
- package/Runtime/AmaGDK.cs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [0.2.104] - 2026-06-10
|
|
2
|
+
- fix(ci): Add exit command after successful build completion in GDKCIBuildCommand
|
|
3
|
+
- [Dev] Add ads_cached to Max ad event tracking
|
|
4
|
+
|
|
5
|
+
## [0.2.103] - 2026-06-08
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## [0.2.102] - 2026-05-13
|
|
9
|
+
- [Fix] Wait for rewarded video callback
|
|
10
|
+
|
|
1
11
|
## [0.2.101] - 2026-05-12
|
|
2
12
|
- [Dev] send ad_impression to AF + Max bannerads_click
|
|
3
13
|
|
|
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/Ad/AdLogic.cs
CHANGED
|
@@ -271,8 +271,17 @@ namespace Amanotes.Core.Internal
|
|
|
271
271
|
{
|
|
272
272
|
yield return null;
|
|
273
273
|
}
|
|
274
|
-
//
|
|
275
|
-
if (context != null && !context.hasReward && adType == AdType.VideoReward && !context.hasFailedOrCancelled)
|
|
274
|
+
// Wait longer for hasReward callback after onClose (some networks delay this)
|
|
275
|
+
if (context != null && !context.hasReward && adType == AdType.VideoReward && !context.hasFailedOrCancelled)
|
|
276
|
+
{
|
|
277
|
+
// Wait up to 0.5 seconds for the reward callback
|
|
278
|
+
float waitTime = 0f;
|
|
279
|
+
while (waitTime < 0.5f && context != null && !context.hasReward && !context.hasFailedOrCancelled)
|
|
280
|
+
{
|
|
281
|
+
yield return null;
|
|
282
|
+
waitTime += Time.unscaledDeltaTime;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
276
285
|
}
|
|
277
286
|
|
|
278
287
|
private class FocusState
|
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.104";
|
|
31
31
|
|
|
32
32
|
internal static Status _status = Status.None;
|
|
33
33
|
internal static ConfigAsset _config = null;
|