com.amanotes.gdk 0.2.95 → 0.2.96

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,11 @@
1
+ ## [0.2.96] - 2026-03-30
2
+ - [Dev] Auto logConsumableTransaction for iOS >= 18
3
+ - [Fix] Pass result callback to FetchTimeWithOtherProvider for improved error handling
4
+ - [Dev] Upgrade RevenueCat 8.4.5
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.95] - 2026-02-02
2
10
  - [Fix] Pass result callback to FetchTimeWithOtherProvider for improved error handling
3
11
 
@@ -103,7 +103,8 @@ namespace Amanotes.Core
103
103
 
104
104
  new PlistEntry { key = "ITSAppUsesNonExemptEncryption", value = "false", type = PlistEntry.PlistValueType.Boolean, enable = true },
105
105
  new PlistEntry { key = "FacebookAutoLogAppEventsEnabled", value = "true", type = PlistEntry.PlistValueType.Boolean, enable = true },
106
- new PlistEntry { key = "FacebookAdvertiserIDCollectionEnabled", value = "true", type = PlistEntry.PlistValueType.Boolean, enable = true }
106
+ new PlistEntry { key = "FacebookAdvertiserIDCollectionEnabled", value = "true", type = PlistEntry.PlistValueType.Boolean, enable = true },
107
+ new PlistEntry { key = "SKIncludeConsumableInAppPurchaseHistory", value = "true", type = PlistEntry.PlistValueType.Boolean, enable = true }
107
108
  };
108
109
 
109
110
  [Header("Build Properties to Set")]
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.95";
30
+ public const string VERSION = "0.2.96";
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.95",
3
+ "version": "0.2.96",
4
4
  "displayName": "AmaGDK",
5
5
  "description": "Amanotes Game Development Kit",
6
6
  "unity": "2020.3",