Admob has a way to specify that this ad is for kids, as listed here
https://developers.google.com/mobile-ads-sdk/docs/admob/additional-controlsthe way for android is to add the following code:
AdRequest adRequest = new AdRequest.Builder()
.tagForChildDirectedTreatment(true)
.build();
For ios it is:
[request tagForChildDirectedTreatment:YES];
Is there something in the labs to enable this for admob?
I've already modified the appropriate files actually and am testing the integration, though I've just hardcoded to true and that's fine right now.
Comments
Unfortunately no way currently, but you can set it yourself, in respectively AdsAdmob.java (Android) or AdsAdmob.m (IOS), usually in the end of the loadAd method.
If you can't find it, ping here and I will show you exact location
Likes: Aniket
I will come up with a way/API to do that later, whilst trying to provide same interface to all ad frameworks
So for now, you would need to modify it to specific Child oriented apps
Likes: Aniket
Go to admob web site, pick your app and switch to "sensitive ads" tab - from there you can disable sensitive categories like dating, gambling etc.