Skip to content

Commit 330a35a

Browse files
committed
fix max
1 parent 605fe63 commit 330a35a

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

Applovin/ApplovinUnitVariable/MaxBannerVariable.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ public override void Load()
3131
MaxSdkCallbacks.Banner.OnAdRevenuePaidEvent += OnAdRevenuePaid;
3232
if (size != BannerSize.Adaptive) MaxSdk.SetBannerExtraParameter(Id, "adaptive_banner", "false");
3333
_registerCallback = true;
34-
Debug.Log("Load banner");
3534
}
3635

3736
if (isBannerDestroyed)

Applovin/ApplovinUnitVariable/MaxInterVariable.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,13 @@ public override void Load()
3030
MaxSdkCallbacks.Interstitial.OnAdDisplayFailedEvent += OnAdDisplayFailed;
3131
_registerCallback = true;
3232
}
33-
34-
Debug.Log("load inter");
3533
MaxSdk.LoadInterstitial(Id);
3634
#endif
3735
}
3836

3937
public override bool IsReady()
4038
{
4139
#if VIRTUESKY_ADS && ADS_APPLOVIN
42-
Debug.Log($"Inter IsReady id: {Id} / {MaxSdk.IsInterstitialReady(Id)}");
4340
return !string.IsNullOrEmpty(Id) && MaxSdk.IsInterstitialReady(Id);
4441
#else
4542
return false;

Applovin/ApplovinUnitVariable/MaxRewardVariable.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,13 @@ public override void Load()
3434
MaxSdkCallbacks.Rewarded.OnAdReceivedRewardEvent += OnAdReceivedReward;
3535
_registerCallback = true;
3636
}
37-
38-
Debug.Log("load reward");
3937
MaxSdk.LoadRewardedAd(Id);
4038
#endif
4139
}
4240

4341
public override bool IsReady()
4442
{
4543
#if VIRTUESKY_ADS && ADS_APPLOVIN
46-
Debug.Log($"Reward IsReady id: {Id} / {MaxSdk.IsRewardedAdReady(Id)}");
4744
return !string.IsNullOrEmpty(Id) && MaxSdk.IsRewardedAdReady(Id);
4845
#else
4946
return false;

0 commit comments

Comments
 (0)