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