com.amanotes.gdk 0.2.2 → 0.2.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 +5 -1
- 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.cs +2 -3
- 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
|
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;
|
package/Runtime/AmaGDK.cs
CHANGED
|
@@ -9,7 +9,7 @@ namespace Amanotes.Core
|
|
|
9
9
|
{
|
|
10
10
|
public partial class AmaGDK : MonoBehaviour
|
|
11
11
|
{
|
|
12
|
-
public const string VERSION = "0.2.
|
|
12
|
+
public const string VERSION = "0.2.4";
|
|
13
13
|
|
|
14
14
|
internal static AmaGDK _instance;
|
|
15
15
|
internal static Status _status = Status.None;
|
|
@@ -100,8 +100,7 @@ namespace Amanotes.Core
|
|
|
100
100
|
|
|
101
101
|
// Init modules (Adapter managers)
|
|
102
102
|
Analytics.Init();
|
|
103
|
-
|
|
104
|
-
//Ads.Init();
|
|
103
|
+
Ads.Init();
|
|
105
104
|
|
|
106
105
|
_status = Status.Ready;
|
|
107
106
|
_onReadyCallback?.Invoke();
|