Hi
Declare a target audience by September 1st Hello Google Play Developer, A few months ago we emailed you to let you know about our new Families policy. As part of the new policy, all developers must complete the new target audience and content section of the Google Play Console by September 1st. We are asking every developer to thoughtfully consider whether children are part of your target audience. For most developers, the target audience does not include children and this section should be relatively quick to complete. If children are part of your target audience, you must meet policy requirements in your app concerning content and handling of personally identifiable information. You can view more information on the Android developers website and in our blog post, and access training on Google Play's Academy for App Success.
My apps are for general audience so I must update all my apps with proper flags:
Bundle extras = new Bundle(); extras.putString("max\_ad\_content\_rating", "G"); AdRequest request = new AdRequest.Builder() .addNetworkExtrasBundle(AdMobAdapter.class, extras) .tagForChildDirectedTreatment(true) .build();
How to set max_ad_content_rating to “G” in Admob?
Setting in Admob.load:
designedForFamilies = true childSafe = true
will work?