When I add following line of code to configure AdColony ads, I am getting "No fill from ad source" in admob testing suite.
I am writing below code before MobileAds.initialize and before loading any ads.
But, if remove below code, ads are working fine. But for me it is necessary to pass some extra information to adcolony before loading ads.
val options = AdColonyAppOptions()
.setKeepScreenOn(true)
.setGDPRConsentString(adColonyConsent)
.setGDPRRequired(adColonyGDPRRequired)
AdColony.configure(this, options, getString(R.string.adcolony_app_id), getString(R.string.adcolony_zone_id))