I downloaded the latest Unity Ads SDK and followed the instructions to integrate it on my android app.
UnityAds.init(this, "xxxxxxx", null);
The initialization was successful and the log shows that the ad was downloaded.
Initializing Unity Ads version 1508 with gameId xxxxxxx
Requesting Unity Ads ad plan from https://xxxxxxx
Unity Ads initialized with 3 campaigns and 2 zones
Unity Ads cache: File /storage/xxxxxxx/yyyyyyy.mp4 of 1445875 bytes downloaded in 9102ms
I try to show the ad:
if (UnityAds.canShow()) {
UnityAds.show();
}
Then this error message appears:
Unity Ads cannot show ads: webapp not initialized
What am I missing?