我正在尝试使用 AdMob 和中介广告网络在我的应用中实施广告。但是我遇到了以下问题,AdMob 找不到三个网络适配器中的两个。我在 StackOverflow 上找到了一些类似的帖子,但没有一个给出明确的答案如何解决这个问题。
在 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