Okey, but what do you do if somebody changes their consent after the SDK has been initialized? Nothing will happen in your privacy button example..
@burnoutgamingstudio8 ай бұрын
If the UMP form does not load from the server and there is no response due to slow internet, can I still initialize the ads?
@AdMob7 ай бұрын
You can query developers.google.com/admob/unity/reference/class/google-mobile-ads/ump/api/consent-information#canrequestads to determine whether you can or not. This should apply if the form does or does not load.
@RoarOfEnginesGames6 ай бұрын
Hi. Do you have an Admob technical support address? I'm trying to register an Admob account, I enter a phone number for confirmation - it says "Could not send a verification code to this number." I tried to register an account for five different Kazakhstan numbers - it didn’t work. And another question: I have Google Adsense on account No. 1, Google Play Console on account No. 2. Which account should I register Google Admob for? Can I go to account number 3?
@AdMob6 ай бұрын
See our support options: developers.google.com/admob/support - specifically "Product issues". You can start a thread there to properly address your issue
@n_mckean8 ай бұрын
Hey Admob - PLEASE RESPOND TO COMMENTS. In addition to the other questions, I cannot find anywhere how I can identify users that aren't required to give consent (presumably outside the EU etc). Since UMP is doing the job to self-determine this, where is it surfaced? I want to be able to set my consent to allow everything for users that aren't legally required to give consent. I would like to avoid setting default as 'allow all' in case something else goes wrong. Allowing all be default would put me at risk of accidentally showing things I shouldn't whereas defaulting to no consent and then finding users outside EU would be a safer option.
@AdMob8 ай бұрын
You can use ConsentStatus: developers.google.com/admob/unity/reference/namespace/google-mobile-ads/ump/api#namespace_google_mobile_ads_1_1_ump_1_1_api_1aa83ad2ecf6f2a08c584b60cef06f5133 If they are not required to give consent the status will be NOT_REQUIRED. Be sure to call requestConsentInfoUpdate prior to accessing it.
@n_mckean8 ай бұрын
@@AdMob Interestingly in the Unity SDK it says NOT_REQUIRED does not exist. But NotRequired seemed to be accepted.
@AdMob8 ай бұрын
@@n_mckean Correct. ConsentStatus.NotRequired would be the API on Unity.