com.amanotes.gdk 0.1.3 → 0.1.4
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 -2
- package/Packages/AmaGDKConfig.unitypackage +0 -0
- package/Packages/AppsflyerAdapter_v6.5.4.unitypackage +0 -0
- package/Packages/FirebaseAnalyticsAdapter_v9.1.0.unitypackage +0 -0
- package/Runtime/AmaGDK.Internal.cs +1 -1
- package/Runtime/AmaGDK.cs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.1.
|
|
4
|
-
### Release
|
|
3
|
+
## [0.1.4 - 2023-02-13]
|
|
4
|
+
### Release AmaSDK v0.1.4
|
|
5
|
+
|
|
6
|
+
## [0.1.3 - 2023-02-10]
|
|
7
|
+
### Release AmaSDK v0.1.3
|
|
8
|
+
|
|
9
|
+
## [0.1.2] - 2023-02-08
|
|
10
|
+
### Release AmaGDK 0.1.2
|
|
5
11
|
### FirebaseAnalytics adapter compatible with FirebaseAnalytics SDK v9
|
|
6
12
|
### Appsflyer adapter compatible with Appsflyer SDK v6
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -32,7 +32,7 @@ namespace Amanotes.Core.Internal
|
|
|
32
32
|
#endif
|
|
33
33
|
|
|
34
34
|
public const string PACKAGE_PATH = BASE_PATH + "Packages/";
|
|
35
|
-
public const string AMAGDK_PREFAB = BASE_PATH + "AmaGDK.prefab";
|
|
35
|
+
public const string AMAGDK_PREFAB = BASE_PATH + "Runtime/AmaGDK.prefab";
|
|
36
36
|
public const string AMAGDK_CONFIG_PACKAGE = PACKAGE_PATH + "AmaGDKConfig.unitypackage";
|
|
37
37
|
|
|
38
38
|
public static readonly string[] AMAGDK_ADAPTERS = new string[]
|
package/Runtime/AmaGDK.cs
CHANGED