找不到广告网络适配器

Cannot find an ad network adapter

我正在尝试使用 AdMob 和中介广告网络在我的应用中植入广告。但是我遇到了以下问题,AdMob 找不到三个网络适配器中的两个。我在 Whosebug 上找到了一些类似的帖子,但其中 none 给出了如何解决此问题的明确答案。

在 AdMob 面板中,我添加了 Vungle、AdColony 和 ChartBoost。当我调用 loadAd 时,它只能找到 ChartBoost 的适配器。但我也包含了 Vungle 和 AdColony 的适配器。

我还链接了所有 SDK 和网络适配器并设置了其他链接器标志

这是我初始化 AdMob 的方式:

FIRApp.configure()
GADMobileAds.configure(withApplicationID: "MY_AD_ID")

然后当我调用这个方法加载一个add:

func loadAd() {
    if !GADRewardBasedVideoAd.sharedInstance().isReady {
        let request = GADRequest()
        GADRewardBasedVideoAd.sharedInstance().load(request, withAdUnitID: "MY_AD_UNIT_ID")
    }
}

这是我收到的错误:

<Google> Cannot find an ad network adapter with the name(s): GADMAdapterVungleRewardBasedVideoAd. Remember to link all required ad network adapters and SDKs, and set -ObjC in the 'Other Linker Flags' setting of your build target.

<Google> Cannot find an ad network adapter with the name(s): GADMAdapterAdColony. Remember to link all required ad network adapters and SDKs, and set -ObjC in the 'Other Linker Flags' setting of your build target.

这是添加的适配器的图像: http://imgur.com/a/USP5N

对于可能遇到此问题的其他人,请检查以确保您的广告单元 ID 正确无误。在我的例子中,我使用 Android 的测试 ID 而不是 iOS ID。更改它解决了问题!