com.amanotes.gdk 0.2.6 → 0.2.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 +3 -0
- package/Extra/AmaGDKInstaller.unitypackage +0 -0
- package/Packages/AmaGDKConfig.unitypackage +0 -0
- package/Packages/AmaGDKExample.unitypackage +0 -0
- package/Packages/AmaGDKTest.unitypackage +0 -0
- package/Packages/AmaPassport.ATTSupport.unitypackage +0 -0
- package/Packages/AmaPassportAdapter_v1.0.0.unitypackage +0 -0
- package/Packages/AppsFlyerAdapter_v6.5.4.unitypackage +0 -0
- package/Packages/FirebaseAnalyticsAdapter_v9.1.0.unitypackage +0 -0
- package/Packages/FirebaseRemoteConfigAdapter_v9.1.0.unitypackage +0 -0
- package/Packages/IronsourceAdapter_v7.2.6.unitypackage +0 -0
- package/Runtime/AmaGDK.Adapters.cs +2 -2
- package/Runtime/AmaGDK.cs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -91,13 +91,13 @@ namespace Amanotes.Core.Internal
|
|
|
91
91
|
|
|
92
92
|
if (adapters == null || adapters.Count < 1)
|
|
93
93
|
{
|
|
94
|
-
|
|
94
|
+
Log($"Not found adapter for <{typeof(T)}>!");
|
|
95
95
|
return null;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
if (adapters.Count > 1)
|
|
99
99
|
{
|
|
100
|
-
LogError($"Multiple adapters detected. <{
|
|
100
|
+
LogError($"Multiple adapters detected. <{typeof(T)}> supports only one adapter!");
|
|
101
101
|
return null;
|
|
102
102
|
}
|
|
103
103
|
|
package/Runtime/AmaGDK.cs
CHANGED