android– 广告评级,Google控制台和12,“广告未能加载:3”与“G”

android– 广告评级,Google控制台和12,“广告未能加载:3”与“G”,第1张

概述我收到了GooglePlay开发者支持的下一条消息,说明了我的新应用更新Theadsshownwithinyourappmustbeappropriatefortheintendedaudienceofyourapp,evenifthecontentbyitselfisotherwisecompliantwithourpolicies.Forexample,adsthatshowma

我收到了Google Play开发者支持的下一条消息,说明了我的新应用更新

The ads shown within your app must be appropriate for the intended
audIEnce of your app, even if the content by itself is otherwise
compliant with our policIEs. For example, ads that show mature content
or services cannot be served in apps that have a content rating for
younger audIEnces.

(据我所知,他们想说的是,如果您的应用的年龄等级为3,那么您的广告应该具有相同的评级)

我找到了解决这个问题的解决方案

max_ad_content_rating为“G”,为3评级(https://developers.google.com/admob/android/targeting)

private voID requestAd() {    Bundle extras = new Bundle();    extras.putString("max_ad_content_rating", "G");    AdRequest adRequest = new AdRequest.Builder()            .addNetworkExtrasBundle(AdMobAdapter.class, extras).build();    mAdVIEw.setAdListener(mBannerAdListener);    mAdVIEw.loadAd(adRequest);}

但是我不确定它的盈利有多好,我的意思是如果有广告只适合3(儿童),没有人会点击这样的广告

我发现YouTube应用(com.Google.androID.youtube包)有12个评分,它在Google Play页面上显示如下:

他们是如何制定这种父母指导的?

大多数应用都有3个评级,要获得12个或更多,您必须在Google控制台的内容评级问卷调查中设置您的应用内容有一些性,暴力等

在这份调查问卷中,我没有找到任何能够将我的评级计算为父母指导12的内容

在调查问卷中我尝试为我的应用程序设置了一点性欲但是它计算的评分为12而不是所有国家,俄罗斯它设置为16

谷歌是否只为他们的应用设置了他们想要的东西,并且不允许其他开发者也设置这样的东西?

附:年龄等级表

更新(广告无法加载)

我为我的应用上传了新的更新,其中包括“max_ad_content_rating”,“G”和广告停止加载(显示)…

我试图检查手机的日志,我发现广告无法加载:当我启动应用时,有3条消息

真棒…

更新2

只有在我设置extras.putString(“max_ad_content_rating”,“MA”)时才会显示广告;这是最高评级(16,18),当然如果我根本没有设置这样的额外过滤器它可以正常工作

其他(“G”,“PG”,“T”)失败,Ad无法加载:3错误

解决方法:

我有app拒绝电子邮件

Ad content​
The ad content in your app is not consistent with the app’s content rating. To resolve this issue, please remove ad content not consistent with your app’s rating and/or retake the content rating questionnaire and include your ad content. If you monetize your app, please ensure you’ve excluded ads from sensitive categorIEs. For more details, you can refer to the “Ads” section (#3) of the FamilIEs Policy Requirements.

因此我意识到我在Google Play上有3个评分,但它与我的Google AdMod设置不符.

我按照信中的建议阻止了所有敏感类别:

我把广告内容评为MA:

然后我重新提交了应用程序,大约24小时后它成功发布.

总结

以上是内存溢出为你收集整理的android – 广告评级,Google控制台和12,“广告未能加载:3”与“G”全部内容,希望文章能够帮你解决android – 广告评级,Google控制台和12,“广告未能加载:3”与“G”所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1100842.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存