Currently when trying to load an interstitial, there is a timeout for the request (which I have noted) of 30 seconds or so. I would like to reduce that to 10-15 seconds, but I am unable to find a method to set the timeout value.
Is there such a thing in the SDK or do I need to implement my own timer?
AdRequest adRequest = new AdRequest.Builder().build();
mInterstitial.loadAd(adRequest);
mInterstitial.setAdListener(new AdListener() {
@Override
public void onAdLoaded() {
super.onAdLoaded();
mInterstitial.show();
}
@Override
public void onAdFailedToLoad(int errorCode) {
super.onAdFailedToLoad(errorCode);
jumpToMainActivity();
}
@Override
public void onAdClosed() {
super.onAdClosed();
jumpToMainActivity();
}
});