Hey,
I have implemented UnityAds into a game and wanted to show a picture ad on launch, If i give the zoneID from the standard zones it doesnt show up and throws a warning. Video ads work perfectly fine with a different zone.
When the picture ad is supposed to show it throws this warning:
SelectAdapter return null;
I am showing the ad with this code:
public void ShowAds(string zoneId)
{
if (Advertisement.isReady() && Advertisement.isSupported && Advertisement.isInitialized)
{
Advertisement.Show(zoneId);
}
else if (!Advertisement.isInitialized)
{
Debug.LogError("Advertisement is not initialized");
}
else if(!Advertisement.isSupported)
{
Debug.LogError("Advertisement is not supported");
}
else if(!Advertisement.isReady())
{
Debug.LogError("Advertisement is not ready");
}
}
Thanks in advance