YoYoGames / GMEXT-AdMob

Repository for GameMaker's AdMob Extension
Other
8 stars 3 forks source link

I'm having some issues with admob extension #70

Closed gm-bug-reporter[bot] closed 4 days ago

gm-bug-reporter[bot] commented 2 weeks ago

Description

Your app contains ads that don't comply with our family ad format requirements. For example, we do not allow: Ads or offers for in-app purchases that cannot be easily differentiated from in-app content, including, but not limited to, offerwalls and immersive ad experiences. For example, the app has an ad that is not clearly marked or has a similar style to the game interface.

Steps To Reproduce

Even using the code from this page:

https://github.com/YoYoGames/GMEXT-AdMob/wiki

Google can't approve my version...

// First of all we need to set the Consent Mode, which can be used for // debugging purposes to run tests as a user in a different geographic area; // more info: Consent Mode. This function will generate an ASYNC SOCIAL EVENT. AdMob_Consent_RequestInfoUpdate(AdMob_Consent_Mode_PRODUCTION);

// The function below allows the developer to enable or disable ads for // under-age users (much like the old version). Note that it is up to the // developer to identify the age of the consumer. AdMob_Targeting_UnderAge(true);

// The function below allows the developer to enable or disable ads for // children. Note that it is up to the developer to identify the age of the // consumer. AdMob_Targeting_COPPA(true);

// The new version of the AdMob extension allows for even further control // over the filtering of the ads being displayed to the user. The function // below allows the developer to set a maximum content rating of the ads to be // displayed (info: AdMob_Targeting_MaxAdContentRating and Content Rating constant. AdMob_Targeting_MaxAdContentRating(AdMob_ContentRating_PARENTAL_GUIDANCE);

Which version of GameMaker are you reporting this issue for?

IDE v2024.8.1.171 Runtime v2024.8.1.218

Which operating system(s) are you seeing the problem on?

Windows 10.0.19045.0

Which platform(s) are you seeing the problem on?

Android

d65e8d37-ba3c-4b34-a073-39b4ac7889f0

DiasFranciscoA commented 4 days ago

Hello thank you for reaching out. It looks like the problem might be related to the app's configuration, which likely has features enabled that require it to comply with Google's Designed for Families program. Specifically, the settings for targeting underage users and children. Having them enabled in your Googles Dashboard for your app means that you will need to turn on features as AdMob_Targeting_UnderAge(true) and AdMob_Targeting_COPPA(true), to signal that your app is intended for a younger audience. Therefore, your app is subject to stricter ad format requirements.

However this is NOT enough for comply with Google standards, you will need extra costumization:

  1. Double-check the ad labeling to ensure it's clear and visible.
  2. Review all ad placements to avoid blending ads with the game UI.
  3. Ensure that only family-friendly and non-personalized ads are served.
  4. Consider using a stricter ad content rating like AdMob_ContentRating_GENERAL for child-safe ads.
  5. If your app is not specifically for children, consider turning off the "Designed for Families" feature in the Google Play Console.

If this persists you might want to contact Google directly to know why the app is being rejected.