From bba3d61ce0debc841ba6ec5219a125c6e0954d12 Mon Sep 17 00:00:00 2001 From: huyufei Date: Tue, 23 Apr 2024 14:16:39 +0800 Subject: [PATCH] =?UTF-8?q?update:=20=E6=9B=B4=E6=96=B0=E5=B9=BF=E5=91=8A?= =?UTF-8?q?=E9=9D=99=E9=9F=B3=E7=9A=84=E8=B0=83=E7=94=A8=E9=A1=BA=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Runtime/GuruCore/Runtime/Ads/ADServiceBase.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Runtime/GuruCore/Runtime/Ads/ADServiceBase.cs b/Runtime/GuruCore/Runtime/Ads/ADServiceBase.cs index 3fe8488..2568eb1 100644 --- a/Runtime/GuruCore/Runtime/Ads/ADServiceBase.cs +++ b/Runtime/GuruCore/Runtime/Ads/ADServiceBase.cs @@ -92,8 +92,8 @@ namespace Guru //-------------- SDK 初始化 ------------------- if (_initSpec == null) _initSpec = AdsInitSpec.BuildDefault(); MaxSdk.SetVerboseLogging(_initSpec.isDebug); - MaxSdk.SetMuted(false); - InitService(); + + InitService(); // 内部继承接口 } protected virtual void InitService() @@ -104,6 +104,7 @@ namespace Guru private void OnMaxSdkInitializedCallBack(MaxSdkBase.SdkConfiguration sdkConfiguration) { this.Log("AD SDK Init Success"); + MaxSdk.SetMuted(false); if (_initSpec.autoLoad) OnMaxSdkReady(); _onSdkInitReady?.Invoke(); }