Hello;
Unity rewarded ads are working fine but only one thing,
A player is not rewarded after watching a full video on android mobile, however, all seem to work perfectly on the unity editor.
...
if I check Test mode on unity editor, then i test the game, when i press rewarded video ad the player will move to the Exit location of the maze.
But it is not working on android after i build the game.
----------
public void OnUnityAdsDidFinish (string surfacingId, ShowResult showResult) {
// Define conditional logic for each ad completion status:
if (showResult == ShowResult.Finished) {
// Reward the user for watching the ad to completion.
Player.transform.position = ExitPosition.transform.position;
Player.transform.rotation = ExitPosition.transform.rotation;
Debug.Log("Rewarded Video Finished, Player Moved to Exit");
}
↧