Jhonn Member Feb 20, 2020 #1 Using admob, only way is call LoadAd for each activity? Google documentation between call past 60 seconds. But this is not global variable. Ex.: Activity Main Call AdView1.LoadAd Activiy Second Call AdView1.LoadAd
Using admob, only way is call LoadAd for each activity? Google documentation between call past 60 seconds. But this is not global variable. Ex.: Activity Main Call AdView1.LoadAd Activiy Second Call AdView1.LoadAd
Erel B4X founder Staff member Licensed User Longtime User Feb 21, 2020 #2 Yes, you need to call it in each of the activities that you want to show an ad. If you are worried about making too frequent calls then store the last request time in a process global variable and only make a new request after 60 seconds. Upvote 0
Yes, you need to call it in each of the activities that you want to show an ad. If you are worried about making too frequent calls then store the last request time in a process global variable and only make a new request after 60 seconds.