Some of my mediated networks get requested often by AdMob but don't generate a single valid impressions. All code is up-to-date and adapter versions too.
Unity, IronSource, InMobi get thousands of requests but not single impression results from them.
Some of my mediated networks get requested often by AdMob but don't generate a single valid impressions. All code is up-to-date and adapter versions too.
Unity, IronSource, InMobi get thousands of requests but not single impression results from them.
Share Improve this question asked Mar 26 at 20:48 S. GisselS. Gissel 2,6703 gold badges18 silver badges37 bronze badges1 Answer
Reset to default 0Some networks (e.g. IronSource and Unity) have their problem with requesting adaptive banner size. In AdMob Banner documentation recommends a adaptive banner with the size of 360px width (and static function returns height of 56px). Vungle can react to this size and sends a banner with the common size of 320x50.
adView.setAdSize(AdSize.getCurrentOrientationAnchoredAdaptiveBannerAdSize(this, 360));
IronSource, Unity and InMobi don't react adequate and can't send valid bids.
Change the call to
adView.setAdSize(AdSize.getCurrentOrientationAnchoredAdaptiveBannerAdSize(this, 320));
or maybe better
adView.setAdSize(AdSize.BANNER);
Even more important: Implement consent management.
To get any impressions from Unity, Meta, IronSource, it is needed to integrate Google UMP aka consent management. https://developers.google/admob/android/privacy
A word from Unity support: Unity Ads does not send replies when consent is missing, as it relies on receiving consent signals to operate correctly.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744125867a4559609.html
评论列表(0条)