I wonder when I have to load a rewardedVideo:
Example:
I init admob then load multiple rewardedVideo ads:
admob.load( “rewardedVideo”, { adUnitId=“YOUR_ADMOB_AD_UNIT_ID1” } )
admob.load( “rewardedVideo”, { adUnitId=“YOUR_ADMOB_AD_UNIT_ID2” } )
admob.load( “rewardedVideo”, { adUnitId=“YOUR_ADMOB_AD_UNIT_ID3” } )
admob.load( “rewardedVideo”, { adUnitId=“YOUR_ADMOB_AD_UNIT_ID4” } )
Now I can check with admob.isLoaded (“rewardedVideo”)==true if a video is available. Then I can show it with admob.show (“rewardedVideo”).
But how can I check now which video I have to load again in case another is already loaded from the list above?
Is it okay to load all of them when the video has finished? What exactly is happening if a video of the list above has loaded and then I try to load it again? Is this okay to do?