Questions tagged [admob-rewardedvideoad]

154 questions
3
votes
0 answers

How to implement RewardedVideo ad with libgdx on Android?

I want to implemento a RewardedVideo ad in my game so the user can keep playing the game, but if the user does not want to see the ad then he has to start over. The thing is... I tried some code I could find on google but it does not seem to work…
3
votes
5 answers

How to verify Admob Rewarded Video Ad on a server?

Is there a way to verify if the Rewarded Video Ad was watched by client (OnAdRewarded) on a server? Is there any integration I can use with Google Cloud Functions? I thought it's possible to verify a token sent by client to the server with admob…
Dave
  • 2,684
  • 2
  • 21
  • 38
3
votes
0 answers

Implementing AdMob Rewarded Video with LibGDX

I am creating a game with LibGDX and wanted to put rewarded videos on it but I can't figure out how I do that. I have already displayed an admob banner with this tutorial: https://www.youtube.com/watch?v=cwAN4LMXo58 I have already seen this question…
P. Duarte
  • 59
  • 1
  • 9
3
votes
1 answer

Can´t load rewarded videos from admob

i have problems with the admob rewarded videos. i followed all the steps from here: https://developers.google.com/admob/android/quick-start?hl=es-419#import_the_mobile_ads_sdk https://developers.google.com/admob/android/rewarded-video?hl=es-419 But…
Zekirak
  • 191
  • 6
2
votes
1 answer

How to open another page after rewarded ad is watched in Flutter?

Flutter App. One button that leads to the 2nd page where the content is. The user clicks on the button and must watch a video ad(rewarded ad). After the video ad finishes > the user can open the 2nd page / or the 2nd page will be automatically…
2
votes
0 answers

"No ad config" message when loading rewarded ads in admob in Unity

I have been working on a project and want to implement admob ads in it. I followed official documentation and implement banner, interstitial and rewarded ads as well. Everything works fine in editor, but when testing on real device, only banner and…
2
votes
0 answers

AdMob Ads are valid for how much time after loaded successfully?

I wanted to know that... if we have loaded any AdMob ads (Interstitial Ads, Rewarded Ads). then how much time it is valid to show? Is there any time limit define to show ads after loaded?
2
votes
2 answers

How can i add Admob's ads to Flutter widgets tree?

I am a new app developer planning to build a social media app. I want to run ads in that app but admob's ads are pretty annoying as they seem and I don't want to disappoint my users so I was thinking is there any way so that I can use my admob's ads…
user14666830
2
votes
3 answers

RewardedVideoAd MobileAds.getRewardedVideoAdInstance(this) is deprecated. What is the new alternative?

RewardedVideoAd is deprecated. What is the new alternative? void loadAds(){ RewardedVideoAd mRewardedVideoAd; mRewardedVideoAd.loadAd(rewarded_id, new AdRequest.Builder().build()); mRewardedVideoAd =…
jazzbpn
  • 6,441
  • 16
  • 63
  • 99
2
votes
0 answers

RewardedAd causes memory leak. How to disable RewardedAd when destroying the activity in Android?

My Activity is still in the memory after running "finish()" and OnDestroy(). It is not garbage collected. After days of analysis with Memory Profiler I have isolated the issue in the RewardedAd. Basically, if I comment the entries in…
2
votes
3 answers

AdMob rewarded video ad shows impressions, but no earnings, what is it?

See the problem that is happening: the user can watch award-winning ads to unlock a premium feature in the app. It turns out that several award-winning videos have been watched, users are earning the premium feature, but on the AdMob panel, the…
jvoaojvictor
  • 145
  • 1
  • 11
2
votes
3 answers

RewardedVideoAd callback listener mismatch

I have implemented RewardedVideoAd for use of PRO features. When I am using RewardedVideoAd 1 time(in a single screen) in the whole app then it works perfectly. but when I use multiple times (in multiple screens) then RewardedVideoAd callback…
VIISHRUT MAVANII
  • 11,410
  • 7
  • 34
  • 49
2
votes
1 answer

I am trying to add rewarded video to my game but rewarded video events are not working

I have been stuck with this problem for many days. I am trying to add rewarded video to my game but the rewarded video events are not being called. The video ads are shown properly but the events are not being called. I have to disable a UI…
2
votes
2 answers

how to disable back-button on rewarded video show/playing?

During the Rewarded video play i want to disable the back button and set a minimum waiting time . is it possible to do?On which function should i change to complete my desired functionality? here is my code if (mAd.isLoaded()) { mAd.show(); …
2
votes
2 answers

Admob rewarded video is showing but not clickable on React native app

I'm trying to use Admob Rewarded Video in my React Native app. Here is the code I am testing: const advert = firebase.admob().rewarded('ca-app-pub-3940256099942544/5224354917'); const AdRequest = firebase.admob.AdRequest; const request = new…
1
2
3
10 11