You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the problem:
The Continue button as shown in the image in IDFA explainer message is unresponsive when Using the Flutter app Designed for iPad on Mac and there is no way to skip or remove it.
Steps to Reproduce
The code used to show the Form:
void loadForm() {
ConsentForm.loadConsentForm(
(ConsentForm consentForm) async {
var status = await ConsentInformation.instance.getConsentStatus();
if (status == ConsentStatus.required) {
consentForm.show(
(FormError? formError) {
loadForm();
},
);
}
},
(formError) {
// Handle the error
},
);
}
Expected results:
To trigger the iOS ATT alert
Actual results:
Stuck in Explainer message
The text was updated successfully, but these errors were encountered:
Hi @iskamal, got it. This is a duplicate of #1206 - our iOS engineering team is currently working on this issue. I'll follow up here as soon I have an update to share
Hi @iskamal, closing this issue out because it is confirmed not be a Flutter but rather an iOS issue on M1 Macs. Our iOS team is currently working on a fix that will be incorporated into a future UMP SDK version.
Closing out the ticket but will provide updates here when I have anything to share. I am expecting an update around EOY
Plugin Version: google_mobile_ads: ^5.2.0
Describe the problem:
The Continue button as shown in the image in IDFA explainer message is unresponsive when Using the Flutter app Designed for iPad on Mac and there is no way to skip or remove it.
Steps to Reproduce
The code used to show the Form:
void loadForm() {
ConsentForm.loadConsentForm(
(ConsentForm consentForm) async {
var status = await ConsentInformation.instance.getConsentStatus();
if (status == ConsentStatus.required) {
consentForm.show(
(FormError? formError) {
loadForm();
},
);
}
},
(formError) {
// Handle the error
},
);
}
Expected results:
To trigger the iOS ATT alert
Actual results:
Stuck in Explainer message
The text was updated successfully, but these errors were encountered: