79245476

Date: 2024-12-02 20:19:00
Score: 2.5
Natty:
Report link

For those if you have the same issue as well, I found how to fix:

const unsubscribeClosed = rewarded.addAdEventListener(
      AdEventType.CLOSED,
      () => {
        rewarded.load();
        Alert.alert("Tebrikler!", "Reklamı izleyerek ödül kazandın.");
      }
    );

This is going to trigger when user closes the ad. It will load the new ad and when you press the button to watch a new ad, it is going to open without any problem. I found it on github account of the "react-native-google-mobile-ads". There are more evens on AdEventType and others. Here you can find all:

https://github.com/invertase/react-native-google-mobile-ads/blob/main/src/ads/RewardedAd.ts

And the documentation of "React Native Google Mobile Ads"

https://docs.page/invertase/react-native-google-mobile-ads/displaying-ads

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): have the same issue
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ozan