It seems like after following this quide Unity developer integration guides I’m not able to catch OnUnityAdsShowComplete callback for my Interstitial and Reward video. As far as I can see everything else is set fine, as the video is shown and the first callback OnUnityAdsShowStart is called as well. After closing the ad the nessesary callback isn’t called. Can anyone help with this issue? The adverisment package version is 3.7.3. The Unity version is 2021.1.12f1.
,It seems like after following this quide Unity developer integration guides I’m not able to catch OnUnityAdsShowComplete callback for my Interstitial and Reward video. As far as I can see everything else is set fine, as the video is shown and the first callback OnUnityAdsShowStart is called as well. After closing the ad the nessesary callback isn’t called. Can anyone help with this issue? The advertisment package version is 3.7.3. The unity version is 2021.1.12f1.
Hey, @Cartuco, actually I wrote a post about this issue on forum too. Didn’t get the answer yet. But the solution we came up to is to replace IUnityAdsShowListener interface with IUnityAdsListener one. But don’t forget to manually registrate your script as listener in the Awake function for example. I would remove it as a listener in OnDestroy function as well. The callbacks names will differ as well.
There is info here: Unity Ads SDK API reference
alt text
[184056-снимок-экрана-2021-07-27-172701.png|184056]
I updated Advertisement to 4.0.0, the Initialization callback and showad callback looks working, although the loadad callback still not working to me.
And it seems like the OnUnityAdsShowComplete callback is calling mutli times I dont know why, so I make a bool check to make sure it will callback and reward once.
but I am not test it in built game play yet.