com.amanotes.gdk 0.2.81-alpha.6 → 0.2.81-alpha.7
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 +0 -19
- 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.AdQuality.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/AmaGDK.cs +1 -1
- package/Runtime/GDKAudio/Plugins.meta +8 -0
- package/Runtime/GDKAudio.meta +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,21 +1,3 @@
|
|
|
1
|
-
## [v0.2.81-alpha.6] - 2024-12-10
|
|
2
|
-
- [Dev] Refactor Consent module
|
|
3
|
-
- [Dev] Add GDKTaskTracker
|
|
4
|
-
- [Release] 0.2.81-alpha.5
|
|
5
|
-
- [Dev] Save build info
|
|
6
|
-
- Revert "[Dev] Analytics save file in async"
|
|
7
|
-
- [Dev] Make GDKDebug thread-safe
|
|
8
|
-
- [Dev] Add GDKPostBuildAsset
|
|
9
|
-
- [Fix] Retrieve the correct app version from CI variable
|
|
10
|
-
- [Dev] Improve GDK editor experience before config asset imported
|
|
11
|
-
- [Dev] Analytics save file in async
|
|
12
|
-
- [Dev] Move GDKFileUtils to a separated file
|
|
13
|
-
- [Dev] Update game ops model
|
|
14
|
-
- [Dev] Add ABLab
|
|
15
|
-
- [Dev] Move imported GDK Adapter from RawData to Modules
|
|
16
|
-
|
|
17
|
-
# Changelog
|
|
18
|
-
|
|
19
1
|
## [0.2.80] - 2024-11-13
|
|
20
2
|
- [Dev] Don't use obsolete functions
|
|
21
3
|
- [Dev] Add CrashlyticHook
|
|
@@ -30,7 +12,6 @@
|
|
|
30
12
|
- [Dev] Track Adapters and Third-party packages used in games
|
|
31
13
|
|
|
32
14
|
## [0.2.77] - 2024-11-07
|
|
33
|
-
- [Release] 0.2.76
|
|
34
15
|
- [Dev] Remove GDKAudio
|
|
35
16
|
- [Dev] Handle format exception in RemoteConfig
|
|
36
17
|
- [Dev] Handle exception of FetchConfig
|
|
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
|
|
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 = "v0.2.81-alpha.
|
|
30
|
+
public const string VERSION = "v0.2.81-alpha.7";
|
|
31
31
|
|
|
32
32
|
internal static Status _status = Status.None;
|
|
33
33
|
internal static ConfigAsset _config = null;
|