From a9a61e0709bf4a4b49bda3bf799cae1d2ad485a0 Mon Sep 17 00:00:00 2001 From: huyfei Date: Thu, 1 Feb 2024 19:11:11 +0800 Subject: [PATCH] =?UTF-8?q?update:=20=E5=88=A0=E9=99=A4Amazon=20=E5=92=8C?= =?UTF-8?q?=20Pubmatic=20=E7=9A=84=E5=B9=BF=E5=91=8A=E5=AE=8F,=20=E4=BB=A5?= =?UTF-8?q?=E5=90=8E=E9=BB=98=E8=AE=A4=E5=BC=80=E5=90=AF=E4=B8=A4=E4=B8=AA?= =?UTF-8?q?=E6=B8=A0=E9=81=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Runtime/GuruCore/Runtime/Ads/ADService.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Runtime/GuruCore/Runtime/Ads/ADService.cs b/Runtime/GuruCore/Runtime/Ads/ADService.cs index 105db8a..28a09ef 100644 --- a/Runtime/GuruCore/Runtime/Ads/ADService.cs +++ b/Runtime/GuruCore/Runtime/Ads/ADService.cs @@ -50,7 +50,7 @@ namespace Guru // 请根据项目需求实现各渠道接入的逻辑 // 开启渠道需要添加对应的宏 -#if AD_AMAZON +// #if AD_AMAZON channel = new AdChanelAmazon(); channel.Initialize(); _adChannels.Add(channel); // Amazon @@ -73,13 +73,13 @@ namespace Guru // if (success && firstLoad) OnLoadMaxRV(); }; } -#endif +// #endif -#if AD_PUBMATIC +// #if AD_PUBMATIC channel = new AdChannelPubMatic(); channel.Initialize(); _adChannels.Add(channel); // PubMatic -#endif +// #endif } #endregion