com.amanotes.gdk 0.2.87 → 0.2.88
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 +24 -0
- package/Editor/AmaGDKEditor.cs +3 -1
- package/Editor/Extra/GDKPostBuildAsset.cs +21 -3
- package/Runtime/AmaGDK.cs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## [0.2.88] - 2025-07-05
|
|
2
|
+
- [Dev] Various fixes for Unity 6
|
|
3
|
+
- [Fix] Update marker block id for Notion change log
|
|
4
|
+
- [Dev] Add AI config
|
|
5
|
+
- [Dev] Improve crap score 2
|
|
6
|
+
- [Dev] Reduce complexity & crap score
|
|
7
|
+
- [Dev] Various warning fixes & Improve message verification in tests
|
|
8
|
+
- [Fix] Compiler error in Unity 2023+
|
|
9
|
+
- [Dev] Track max adapters
|
|
10
|
+
- [Fix] Do not override config when Adapter id is not available
|
|
11
|
+
- [Fix] Bypass file utils unit test
|
|
12
|
+
- [Dev] Improve verbose logging
|
|
13
|
+
- [BugFix]: Fix sentry issue : Null exception issue
|
|
14
|
+
- [Fix] Missing User Mapping in MaxAdapter
|
|
15
|
+
- [Fix] Manage ad activity killed routine
|
|
16
|
+
- [Fix] Attach JNI thread
|
|
17
|
+
- [Fix] Missing DoOnMainThread for ConsentInformation update
|
|
18
|
+
- [Fix] Send GDKVersionTracking only for Android/iOS
|
|
19
|
+
- [Dev] Rename Remote Config Data Source
|
|
20
|
+
- [Fix] Improve disk space checking with thead pool
|
|
21
|
+
- [Dev] Refactor DiskSpacePopup
|
|
22
|
+
- [Fix] Add missing scope registry for integration test
|
|
23
|
+
- [Dev] Add UniTask Dependency
|
|
24
|
+
|
|
1
25
|
## [0.2.87] - 2025-06-19
|
|
2
26
|
- [Dev] Add AI config
|
|
3
27
|
- [Dev] Improve crap score 2
|
package/Editor/AmaGDKEditor.cs
CHANGED
|
@@ -245,8 +245,10 @@ namespace Amanotes.Editor
|
|
|
245
245
|
bannerTitle ??= new GUIContent()
|
|
246
246
|
{
|
|
247
247
|
image = logo.Value,
|
|
248
|
-
text = $"<b>AmaGDK</b> <size=12><color
|
|
248
|
+
text = $"<b>AmaGDK</b> <size=12><color=\"grey\">v{AmaGDK.VERSION}</color></size>"
|
|
249
249
|
};
|
|
250
|
+
|
|
251
|
+
|
|
250
252
|
AmaGUI.SectionLabel(bannerTitle);
|
|
251
253
|
var rect = GUILayoutUtility.GetLastRect();
|
|
252
254
|
var btnRect = rect;
|
|
@@ -201,6 +201,24 @@ namespace Amanotes.Editor
|
|
|
201
201
|
Debug.Log($"Set build property: {property.key} = {property.value}");
|
|
202
202
|
}
|
|
203
203
|
}
|
|
204
|
+
|
|
205
|
+
static PBXCapabilityType CapabilityFromString(string name)
|
|
206
|
+
{
|
|
207
|
+
return name switch
|
|
208
|
+
{
|
|
209
|
+
"iCloud" => PBXCapabilityType.iCloud,
|
|
210
|
+
"InAppPurchase" => PBXCapabilityType.InAppPurchase,
|
|
211
|
+
"GameCenter" => PBXCapabilityType.GameCenter,
|
|
212
|
+
"PushNotifications" => PBXCapabilityType.PushNotifications,
|
|
213
|
+
"Wallet" => PBXCapabilityType.Wallet,
|
|
214
|
+
"ApplePay" => PBXCapabilityType.ApplePay,
|
|
215
|
+
"PersonalVPN" => PBXCapabilityType.PersonalVPN,
|
|
216
|
+
"HealthKit" => PBXCapabilityType.HealthKit,
|
|
217
|
+
"HomeKit" => PBXCapabilityType.HomeKit,
|
|
218
|
+
// add any others you use…
|
|
219
|
+
_ => throw new ArgumentException($"Unknown capability: {name}")
|
|
220
|
+
};
|
|
221
|
+
}
|
|
204
222
|
|
|
205
223
|
// Enable Capabilities
|
|
206
224
|
private void AddCapabilities(PBXProject proj, string pathToBuildProject, string targetGuid)
|
|
@@ -209,7 +227,7 @@ namespace Amanotes.Editor
|
|
|
209
227
|
{
|
|
210
228
|
if (!capability.enable) continue;
|
|
211
229
|
|
|
212
|
-
var pbxCapabilityType =
|
|
230
|
+
var pbxCapabilityType = CapabilityFromString(capability.type);
|
|
213
231
|
if (pbxCapabilityType == null)
|
|
214
232
|
{
|
|
215
233
|
Debug.LogError($"Unknown capability type: {capability.type}");
|
|
@@ -225,12 +243,12 @@ namespace Amanotes.Editor
|
|
|
225
243
|
continue;
|
|
226
244
|
}
|
|
227
245
|
proj.AddCapability(targetGuid, pbxCapabilityType, entitlementsPath);
|
|
228
|
-
Debug.Log($"Added capability: {pbxCapabilityType
|
|
246
|
+
Debug.Log($"Added capability: {pbxCapabilityType} with entitlements: {entitlementsPath}");
|
|
229
247
|
}
|
|
230
248
|
else
|
|
231
249
|
{
|
|
232
250
|
proj.AddCapability(targetGuid, pbxCapabilityType);
|
|
233
|
-
Debug.Log($"Added capability: {pbxCapabilityType
|
|
251
|
+
Debug.Log($"Added capability: {pbxCapabilityType}");
|
|
234
252
|
}
|
|
235
253
|
}
|
|
236
254
|
}
|
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.88";
|
|
31
31
|
|
|
32
32
|
internal static Status _status = Status.None;
|
|
33
33
|
internal static ConfigAsset _config = null;
|