com.amanotes.gdk 0.2.3 → 0.2.5
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 +7 -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/AmaPassport.AdvertisingID.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.Ads.cs +3 -3
- package/Runtime/AmaGDK.RemoteConfig.cs +1 -1
- package/Runtime/AmaGDK.cs +1 -1
- package/package.json +2 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.5 - 2023-06-07]
|
|
4
|
+
### Remove ATT dependency package
|
|
5
|
+
|
|
6
|
+
## [0.2.4 - 2023-06-07]
|
|
7
|
+
### Hotfix Ads module
|
|
8
|
+
### Update Analytics unit tests
|
|
9
|
+
|
|
3
10
|
## [0.2.3 - 2023-06-06]
|
|
4
11
|
### Refactor Ads module, support ironSource
|
|
5
12
|
### Refactor AmaPassport
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/Runtime/AmaGDK.Ads.cs
CHANGED
|
@@ -129,9 +129,9 @@ namespace Amanotes.Core
|
|
|
129
129
|
internal static void Init()
|
|
130
130
|
{
|
|
131
131
|
_adapter = Adapter.GetSingleAdapter<IAdAdapter>();
|
|
132
|
-
_adConfig = ((AdapterContext)_adapter)
|
|
133
|
-
_adapter
|
|
134
|
-
_adapter
|
|
132
|
+
_adConfig = ((AdapterContext)_adapter)?.GetAdapterConfig<AdAdapterConfig>();
|
|
133
|
+
_adapter?.interstitial.StartLoadAd();
|
|
134
|
+
_adapter?.rewardVideo.StartLoadAd();
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
public static bool HasInterstitial => _adapter.interstitial.hasAd;
|
|
@@ -317,7 +317,7 @@ namespace Amanotes.Core
|
|
|
317
317
|
{
|
|
318
318
|
if (AmaGDK.RemoteConfig.State != AmaGDK.RemoteConfig.FetchState.None)
|
|
319
319
|
{
|
|
320
|
-
LogWarning($"[RemoteConfig] Current state {AmaGDK.RemoteConfig.State.ToString()}\n" +
|
|
320
|
+
LogWarning($"[RemoteConfig] Current state {AmaGDK.RemoteConfig.State.ToString()}\n" +
|
|
321
321
|
$"Cannot start to initialize");
|
|
322
322
|
return;
|
|
323
323
|
}
|
package/Runtime/AmaGDK.cs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "com.amanotes.gdk",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"displayName": "AmaGDK",
|
|
5
5
|
"description": "Amanotes Game Development Kit",
|
|
6
6
|
"unity": "2020.3",
|
|
@@ -15,8 +15,5 @@
|
|
|
15
15
|
"url": "https://amanotes.com"
|
|
16
16
|
},
|
|
17
17
|
"documentationUrl": "https://amagdk.notion.site/amagdk/Ama-GDK-a73596617ab247b6a43c8f12a1581415",
|
|
18
|
-
"license": "MIT"
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"com.unity.ads.ios-support": "1.2.0"
|
|
21
|
-
}
|
|
18
|
+
"license": "MIT"
|
|
22
19
|
}
|