com.amanotes.gdk 0.2.100 → 0.2.102

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,9 @@
1
+ ## [0.2.102] - 2026-05-13
2
+ - [Fix] Wait for rewarded video callback
3
+
4
+ ## [0.2.101] - 2026-05-12
5
+ - [Dev] send ad_impression to AF + Max bannerads_click
6
+
1
7
  ## [0.2.100] - 2026-05-06
2
8
  - [Dev] Add custom banner params to MAX config
3
9
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -271,8 +271,17 @@ namespace Amanotes.Core.Internal
271
271
  {
272
272
  yield return null;
273
273
  }
274
- // wait 1 frame in case hasReward callback after onClose
275
- if (context != null && !context.hasReward && adType == AdType.VideoReward && !context.hasFailedOrCancelled) yield return null;
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
@@ -1236,6 +1236,7 @@ namespace Amanotes.Core.Internal
1236
1236
  {
1237
1237
  // [Header("----- MODULE CONFIG -----")]
1238
1238
  public bool showAnalyticsLog;
1239
+ public bool sendAdImpressionToAppsFlyer;
1239
1240
  [HideInNormalInspector] public bool normalizeEventName = true;
1240
1241
  [HideInNormalInspector] public bool checkMigrationIntegrity = true;
1241
1242
  [HideInNormalInspector] public bool migrateAccumulatedCount = true;
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.100";
30
+ public const string VERSION = "0.2.102";
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.100",
3
+ "version": "0.2.102",
4
4
  "displayName": "AmaGDK",
5
5
  "description": "Amanotes Game Development Kit",
6
6
  "unity": "2020.3",