问题描述
我收到了来自Google Play开发者支持的有关我的新应用更新的下一则消息
(据我了解,他们想说,如果您的应用的年龄分级为3+,那么您的广告应该具有相同的分级)
我找到了解决方案像这样解决它
max_ad_content_rating
到 G
这是3分以上的评分(
他们如何设置此家长指导?
大多数应用程序都有 3 + 等级,要获得12+或更多,您必须设置在问卷期间,您的应用内容在Google控制台中对内容进行性,暴力等
>在此调查问卷中,我没有发现任何可以计算出我的家长指导 12 +
美元的评分b$ b
在调查问卷中,我尝试为我的应用设置一点性别:),但并非所有国家/地区都将其评级为12+,而在俄罗斯,则设置为16 +。
Google是否只为应用设置了他们想要的东西,并且不允许其他开发人员也设置类似的东西?
ps年龄分级表
更新(广告无法加载)
我为我的应用上传了新更新,其中包括 max_ad_content_rating, G
,并且广告停止加载(显示)...
我尝试检查手机的日志,却发现广告失败加载:3
当我启动我的应用程序时的消息
很棒...
更新2
仅当我设置 extras.putString( max_ad_content_rating, MA)时,广告才会显示;
是最高评分(16 +,18 +),如果我根本不设置这种额外的过滤器,当然可以正常工作
其他( G
, PG
, T)
失败,出现广告无法加载:3
错误
我收到了应用拒绝电子邮件
我在Google Play上获得了3分以上的评分,但与我的Google AdMod设置不符。
我屏蔽了所有敏感类别,因为信中建议使用
然后我重新提交了该应用,并在大约24小时后成功将其发布。
I received from Google Play Developer Support next message for my new app update
(as I understand they want to say if your app has age rating 3+ then your ads should have the same rating)
I found a solution to solve it like this
max_ad_content_rating
to "G"
which is for 3+ rating (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);
}
But I'm not sure how good it is for out profit, I mean if there are ads only suitable for 3+ (for children), no one will click on such ads
I found out that YouTube app (com.google.android.youtube package) has 12+ rating and it's being displayed like this on its Google Play page:
How did they set this Parental Guidance?
Most apps have 3+ rating and to get 12+ or more you have to set that your app's content has some sexuality, violent, etc during questionnaire for content rating at Google Console
In this questionnaire I didn't find anything that would calculate my rating as Parental Guidance 12+
I tried to set a little bit sexuality for my app :) during questionnaire but it calculated rating as 12+ not for all countries, for Russia it set 16+
Does Google just set anything they want for their apps and doesn't allow other developers to set something like this as well?
p.s. table of age ratings
UPDATE (Ad failed to load)
I uploaded new update for my app which includes "max_ad_content_rating", "G"
and ads stopped loading (displaying)...
I tried to check logs of my phone and I found out there Ad failed to load : 3
messages when I start my app
Awesome...
UPDATE 2
Ads are only displayed if I set extras.putString("max_ad_content_rating", "MA");
which is the highest rating (16+,18+) and of course it works ok if I don't set such extra filter at all
other ones ("G"
, "PG"
, "T")
fails with Ad failed to load : 3
error
I got app rejection email
So that I realized that I have 3+ rating on Google Play but it doesn't match with my Google AdMod settings.
I blocked all sensitive categories as it was suggested in the letter:
And I left AD CONTENT RATING as MA:
Then I resubmitted the app and after ~24 hours it was published successfully.
这篇关于对广告,Google控制台和12+以上的广告进行评级,“广告加载失败:3”带有“ G”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!