Hello friends.
I have been trying to update one of my games without much success, since Google has rejected my update several times, always claiming the content of the ads. Finally yesterday they removed the game from the store. A game with almost 1M downloads
The problem is that it's a game suitable for children under 13yo, so I must complaint with the families policy thing
They refer me to this: https://support.google.com/admob/answer/6223431
There they suggest to use tagForChildDirectedTreatment() and set the max_ad_content_rating to G (it's at G in my admob console for this game)
After that I saw this post: https://www.b4x.com/android/forum/t...atment-boolean-deprecated.131580/#post-829567 I even asked there but only got adviced to start a new post.
I'm using code from here. As it's a game, It's not a B4Xpages app.
I switched to FirebaseAdMob2 as suggested. The problem I'm facing is that it looks that it does not seem to affect the ads. The reviewers are rejecting my game because of ads content. If the ad they see is from an online shop: rejected. If it's from, let's say, a language school then rejected again.
Here is what I'm doing
So what I'm I doing wrong here?
Thanks in advance...
I have been trying to update one of my games without much success, since Google has rejected my update several times, always claiming the content of the ads. Finally yesterday they removed the game from the store. A game with almost 1M downloads
The problem is that it's a game suitable for children under 13yo, so I must complaint with the families policy thing
They refer me to this: https://support.google.com/admob/answer/6223431
There they suggest to use tagForChildDirectedTreatment() and set the max_ad_content_rating to G (it's at G in my admob console for this game)
After that I saw this post: https://www.b4x.com/android/forum/t...atment-boolean-deprecated.131580/#post-829567 I even asked there but only got adviced to start a new post.
I'm using code from here. As it's a game, It's not a B4Xpages app.
I switched to FirebaseAdMob2 as suggested. The problem I'm facing is that it looks that it does not seem to affect the ads. The reviewers are rejecting my game because of ads content. If the ad they see is from an online shop: rejected. If it's from, let's say, a language school then rejected again.
Here is what I'm doing
B4X:
Sub Activity_Create(FirstTime As Boolean)
...
setAds(False, True)
End Sub
private Sub setAds
Dim m As MobileAds
Wait For (m.Initialize) MobileAds_Ready
Dim Builder As JavaObject = m.CreateRequestConfigurationBuilder(Array(Null))
Builder.RunMethod("setTagForChildDirectedTreatment", Array(1)) 'TAG_FOR_CHILD_DIRECTED_TREATMENT_TRUE
m.SetConfiguration(Builder)
IAd.Initialize("iad", "ca-app-pub-xxxxx...")
IAd.LoadAd
End Sub
So what I'm I doing wrong here?
Thanks in advance...