com.amanotes.gdk 0.2.92 → 0.2.94
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 +8 -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 +2 -0
- package/Runtime/AmaGDK.cs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [0.2.94] - 2025-11-20
|
|
2
|
+
- [Dev] Upgrade RevenueCat 8.4.5
|
|
3
|
+
|
|
4
|
+
## [0.2.93] - 2025-10-31
|
|
5
|
+
- [Dev] Upgrade dev project to 2021.3.45f2
|
|
6
|
+
- [Fix] Cancel redundant LoadAdsRoutine
|
|
7
|
+
- [Dev] Remove '.Editor' in namespace to reduce compiler confusion (ClassName vs Namespace)
|
|
8
|
+
|
|
1
9
|
## [0.2.92] - 2025-09-25
|
|
2
10
|
- [Dev] Remove '.Editor' in namespace to reduce compiler confusion (ClassName vs Namespace)
|
|
3
11
|
|
|
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
|
@@ -40,6 +40,7 @@ namespace Amanotes.Core.Internal
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
Log("[Ad] StartLoadAd");
|
|
43
|
+
_loadRoutine?.StopRoutine();
|
|
43
44
|
_loadRoutine = GDKUtils.StartCoroutine(LoadAdRoutine());
|
|
44
45
|
}
|
|
45
46
|
|
|
@@ -256,6 +257,7 @@ namespace Amanotes.Core.Internal
|
|
|
256
257
|
OnAdShowReadyStatus(true, AdShowReadyStatus.Ready);
|
|
257
258
|
TriggerBeforeAdShow();
|
|
258
259
|
#if !UNITY_EDITOR && UNITY_ANDROID
|
|
260
|
+
_handleAdActivityKilledRoutine?.StopRoutine();
|
|
259
261
|
_handleAdActivityKilledRoutine = GDKUtils.StartCoroutine(HandleAdActivityKilledSilently());
|
|
260
262
|
#endif
|
|
261
263
|
ShowAd();
|
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.94";
|
|
31
31
|
|
|
32
32
|
internal static Status _status = Status.None;
|
|
33
33
|
internal static ConfigAsset _config = null;
|