Implemented UMP in the start of August and initialize the ads after consent info update in this way
ConsentRequestParameters params = new ConsentRequestParameters
.Builder()
.setTagForUnderAgeOfConsent(false)
.build();
consentInformation = UserMessagingPlatform.getConsentInformation(this);
consentInformation.requestConsentInfoUpdate(
this,
params,
new ConsentInformation.OnConsentInfoUpdateSuccessListener() {
@Override
public void onConsentInfoUpdateSuccess() {
createAds()
}
},
Ads visualization dropped badly, and this not just in Europe (where you may think it could be caused by user refused consent), but in ALL countries with a sharp drop in USA that are our main market. Could be the fact we create ads onConsentInfoUpdateSuccess the cause of the issue?