I've been trying to get to grips with the new AppGameKit Advert consent commands, but (as always, lol) seem to be having some difficulties.
In the image above, on the left is an example dialogue from Google Admob.
The middle image is the result I get when trying to use the RequestConsentAdMob() command with an iPhone, notice how it seems to only allow the user to select Non-personalised ads; and the right most image is the error message I get when using the same code on Android.
Here is the code I was using to generate the consent dialogue. (I've removed my Admob account details, but the rest of the code is the same)
SetAdMobDetails("ca-app-pub-nnnnnnnnnnnnnnnn/nnnnnnnnnn")
LoadConsentStatusAdMob("ca-app-pub-nnnnnnnnnnnnnnnn/nnnnnnnnnn","Privacy Policy URL")
Repeat
Print("Initial wait")
sync()
Until GetConsentStatusAdMob()>=0
RequestConsentAdMob()
Do
Print("Waiting")
Print(GetConsentStatusAdMob())
Sync()
Loop
So I am writing here to ask if anyone else has tried to implement these commands as yet? Have you experienced anything similar to me? (Particularly the Android dialogue).
I opted for creating a custom dialogue box myself, and using the OverrideConsentAdMob() command to set the value;
Thanks in advance
=PRoF=