-
Notifications
You must be signed in to change notification settings - Fork 290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade UMP SDK Version (add support for new DebugGeography enums) #1212
Comments
Hi @cnkygmr, with version |
Also, there is a problem that I am not in America and this value returns true.
When you click on the code below and the code above returns true, the same consent form appears.
|
Hi @cnkygmr, based on your available message types, you may need to provide a privacy entry point and the form itself may be the same in order for user to modify their consent. This is working as intended. |
I am also looking for the |
Hi @Tom3652, if you have set up a US regulated state message and the user lives in a US regulated state, they are still able to see the message. Currently there just isn't a way to test this via |
Hi @malandr2 thanks for confirming, i simply would like to test it on my own to see the flow on when they are receiving it and if it's a correct user experience. ConsentInformation.instance.requestConsentInfoUpdate(
params,
() async {
ConsentForm.loadAndShowConsentFormIfRequired((loadAndShowError) async {
GmaMediationUnity mediationUnity = GmaMediationUnity();
if (loadAndShowError != null) {
// Consent gathering failed.
LogManager.printDebug("Error consent form : ${loadAndShowError.message}");
} else {
AnalyticsAPI.logEvent("accept_ads_consent_eu");
mediationUnity.setGDPRConsent(true);
mediationUnity.setCCPAConsent(true);
}
});
},
(FormError error) {
LogManager.printDebug("Error consent form : ${error.message}");
AnalyticsAPI.logError(error, reason: "GDPR Consent form error : ${error.message}");
},
); To display all the messages to the users ? |
Hi @Tom3652, the UMP SDK APIs look correct for consent forms that may appear on app start. You will also need to implement a privacy options entry point for privacy messages forms that require it, such as GDPR. Follow the UMP SDK guide https://developers.google.com/admob/flutter/privacy and see the |
And FWIW, setting
to |
Hi @malandr2, thank you for your answer and explanations. I very willing to do what is necessary but i admit i did not understand (took the time to understand) everything regarding on how to collect precisely the user's consent using the UMP SDK Back to this issue, do you have any ETA about your next release ? |
We expect a new release in January |
Current version Android 2.2.0, Ios 2.4.0. Last version Android 3.1.0, Ios 2.7.0 I need fixes in the new version
The text was updated successfully, but these errors were encountered: