Live Admob 广告突然停止在我的应用中显示

本教程将介绍Live Admob 广告突然停止在我的应用中显示的处理方法,这篇教程是从别的地方看到的,然后加了一些国外程序员的疑问与解答,希望能对你有所帮助,好了,下面开始学习吧。

Live Admob 广告突然停止在我的应用中显示 教程 第1张

问题描述

In June, Admob adverts worked perfectly and AdMob sent a letter with a verification PIN for me to verify my identity & payment details.

Around the beginning of July, nearly all live ads stopped displaying in my app. I am still making the same number of requests, but impressions are so low I have dropped to £0.00/£0.01 a day. All test ads work correctly.

This issue began around the time I renamed my app (only on the app store display), however; all links to my app in my AdMob account are correct so the name change appears to have made no difference on their front-end UI.

When I debug my app, I get a list of warnings in the output section:

    [I-ACS025031] AdMob App ID changed. Original, new: (nil),

    [I-ACS013003] User property name must start with a letter: _ap

    Setting up new ad units.

    Reverting back to an older version of the app.

    Contacted AdMob 'support' via a form. They told me my ad serving is being limited. They did not say for how long and it has been around 2/3 weeks (by 'limited', I don't think they meant completely stopped).

    Checked for policy violations in my account; nothing is there.

I have created an 'AdMobDisplayer' class that allows me to set up and display ads; this is called by each view controller. For example, my banner ads code:

View Controller:

 let adMobDisplayer = AdMobDisplayer()

 @IBOutlet weak var bannerView: GADBannerView!

 override func viewDidLoad() {
  super.viewDidLoad()

  self.bannerView = self.adMobDisplayer.setupAdBannerView(self.bannerView, viewController: self, adUnitId: Constants.timerTabBannerAdId)

  self.adMobDisplayer.displayBannerAd(self.bannerView)

 }

AdMobDisplayer:


 func setupAdBannerView(_ bannerView: GADBannerView, viewController: UIViewController, adUnitId: String, bannerViewDelgate: GADBannerViewDelegate? = nil) -> GADBannerView {

  if(checkIfAdsAreDisabled()) {
return bannerView
  }
/// Creates a new GADBannerView to be displayed in a view controller
  bannerView.adUnitID = adUnitId
  /// bannerView.adUnitID = Constants.testBannerAdId
  bannerView.rootViewController = viewController

  if let delegate = bannerViewDelgate {
bannerView.delegate = delegate
  }

  return bannerView
 }

 func displayBannerAd(_ bannerView: GADBannerView) {
  if(checkIfAdsAreDisabled()) {
return
  }
///Creates a request and loads an advert from AdMob
  let request = GADRequest()
  request.testDevices = [ "My Device Id" ]
  bannerView.load(request)
 }

This should display a banner ad in the view. It worked when I first added adverts in, it works for test adverts, but intermittently/rarely for live adverts now.

Find the full application on my GitHub: https://github.com/AlexMarchant98/KeGal-Trainer

Thanks in advance for any help!

解决方案

So I fixed this ages ago, but, my fix was to add the required 'NSAppTransportSecurity' keys into my info.plist.

好了关于Live Admob 广告突然停止在我的应用中显示的教程就到这里就结束了,希望趣模板源码网找到的这篇技术文章能帮助到大家,更多技术教程可以在站内搜索。