Hello
Here is my problem:
I have a rewarded video ad in my project and it worked fine when I was testing it in the editor (test mode on).
I was able to watch the add after clicking the button and I got a reward after it was finished.
When I installed the APK on my android smartphone it allowed me to watch a video but didn’t trigger the rewarding activity
I am willing to provide required logs but you have to explain me what exactly to do as I am absolutely new to this.
Also I didn’t try to upload the app to Google PlayMarket, so I installed my app directly from the APK build.
Thank you
So if anyone is interested:
The origin of the problem was the changing of the scenes and once you go back to the scene with the rewardedAd - Listener was initialized once again.
So the script was trying to give multiple rewards and it caused a problem
I added
public void OnDestroy ()
{
Advertisement.RemoveListener (this);
}
to the code and it seems to work… for now