https://developers.google.com/interactive-media-ads/docs/sdks/android/v3/history
Allows the user to customize ad UI elements via AdsRenderingSettings.setUiElements.
Which is phrased as a feature, but it feels like it should have been mentioned a bit more prominent if the opposite used to be default behavior (?). If you dig deeper in the SDK documentation you will find:
https://developers.google.com/interactive-media-ads/docs/sdks/android/v3/api/reference/com/google/ads/interactivemedia/v3/api/AdsRenderingSettings#setUiElements(java.util.Set<com.google.ads.interactivemedia.v3.api.UiElement>)
Which references code that hints at what you have to do to make the counter label show. The code referenced there doesn't actually work because there is a typo (UiElements should be UiElement) and because the class ImmutableSet is not a symbol that i can find after including the IMA SDK (seems to be guava?).
To make the label appear you have to do something like this:
mAdsRenderingSettings = mSdkFactory.createAdsRenderingSettings();
Set<UiElement> set = new HashSet<UiElement>(); set.add(UiElement.AD_ATTRIBUTION); set.add(UiElement.COUNTDOWN); mAdsRenderingSettings.setUiElements(set);The code that makes and populates the Set can probably be improved.