Yes. Removing ads is not an option, it is 100%. Look, I understand that it’s all because of the GDPR, which has become mandatory in admob. Because of this window, data is sort of collected, which leads to our problem, I think.
I also found several actions, if we are talking about Construct, then in the advertising plugin you can select Tag Under Age of consent and Tag for child directed. Perhaps you can somehow configure these checkboxes, which will have a positive effect on the result? I don't fully understand what they do, but I'm looking into it, let me know if you have any ideas.
And the question is about removing the children's audience. What do you think this might affect? I think this will be my last resort and most likely I will have to use it. Because I don’t understand the option of getting into the code and manifest.
I also found a couple of links that can help us:
https://support.google.com/admob/answer/6223431
https://support.google.com/googleplay/android-developer/answer/6048248?hl=en
I think this's the right way, but can you explain me how to implement this code bro?
RequestConfiguration requestConfiguration = MobileAds.getRequestConfiguration()
.toBuilder()
.setTagForChildDirectedTreatment(
RequestConfiguration.TAG_FOR_CHILD_DIRECTED_TREATMENT_TRUE)
.setMaxAdContentRating(RequestConfiguration.MAX_AD_CONTENT_RATING_G)
.build();
MobileAds.setRequestConfiguration(requestConfiguration);
What file is the code placed in?
- thanks