Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正如我所读到的,GDPR 需要同意才能被撤销。
我只找到了 ConsentInformation.reset() 方法,但是那个特别提到它仅用于调试目的。
https://developers.google.com/admob/ump/android/api/reference/com/google/android/ump/ConsentInformation#public-abstract-void-reset
撤回同意以便再次显示同意对话框的正确方法是什么?
每次您调用时form.show(act)都会显示一个对话框,即使用户已经提供了同意信息。这就是为什么您必须检查是否consentInformation.consentStatus具有ConsentInformation.ConsentStatus.REQUIRED之前的值。
form.show(act)
consentInformation.consentStatus
ConsentInformation.ConsentStatus.REQUIRED
这一切都意味着,要为用户提供一种更改同意的方式,您只需拨打电话show(act)即可,无需执行上述检查。
show(act)