we are using exo ima extension v2.9.1. we want mediaLoadTimeOutInMs = 1000 ms of preroll.
but Ad wait for 8 sec to throw the media timeout error. It increase the latency of the content startup.
ImaAdsLoader.Builder builder = new ImaAdsLoader.Builder(context);
if (vastTimeOutInMs != AdData.NOT_SET) {
builder.setVastLoadTimeoutMs(vastTimeOutInMs);
}
if (mediaLoadTimeOutInMs != AdData.NOT_SET) {
builder.setMediaLoadTimeoutMs(mediaLoadTimeOutInMs);
}
builder.setAdEventListener(this);
adsLoader = builder.buildForAdTag(adTagUri);