Rewarded video ad failed to load

1.3k Views Asked by At

Every time when i run the code its call onRewardedVideoAdFailedToLoad(int i) function. I am using codelabs example. Sorry for bad English and thanks for helping me. here is my code. I used many tutorial . Is there anything I did it in the wrong way?

Or I just missed some steps?

public class Rewardedvideo extends AppCompatActivity implements 
RewardedVideoAdListener {
RewardedVideoAd mAd;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_rewardedvideo);
    MobileAds.initialize(getApplicationContext(), "ca-app-pub-
3940256099942544~3347511713");

    mAd=MobileAds.getRewardedVideoAdInstance(Rewardedvideo.this);
    mAd.setRewardedVideoAdListener(this);
    loadrewardedvideoAd();
}
public void loadrewardedvideoAd(){
    if(!mAd.isLoaded()){
        mAd.loadAd("ca-app-pub-3940256099942544/5224354917",new 
AdRequest.Builder().build());
    }
}
public void startvideo(){
    if(mAd.isLoaded()){
        mAd.show();
    }
    else {
        mAd.loadAd("ca-app-pub-3940256099942544/5224354917",new 
AdRequest.Builder().build());
        mAd.show();
    }
}
@Override
public void onRewarded(RewardItem reward) {
    Toast.makeText(this, "onRewarded! currency: " + reward.getType() + "  
amount: " +
            reward.getAmount(), Toast.LENGTH_SHORT).show();
    // Reward the user.
}

@Override
public void onRewardedVideoAdLeftApplication() {
    Toast.makeText(this, "onRewardedVideoAdLeftApplication",
            Toast.LENGTH_SHORT).show();
}

@Override
public void onRewardedVideoAdClosed() {
    Toast.makeText(this, "onRewardedVideoAdClosed", 
Toast.LENGTH_SHORT).show();
}

@Override
public void onRewardedVideoAdFailedToLoad(int errorCode) {
    Toast.makeText(this, "onRewardedVideoAdFailedToLoad", 
Toast.LENGTH_SHORT).show();
}

@Override
public void onRewardedVideoAdLoaded() {
    Toast.makeText(this, "onRewardedVideoAdLoaded", 
Toast.LENGTH_SHORT).show();
    startvideo();
}

@Override
public void onRewardedVideoAdOpened() {
    Toast.makeText(this, "onRewardedVideoAdOpened", 
Toast.LENGTH_SHORT).show();
}

@Override
public void onRewardedVideoStarted() {
    Toast.makeText(this, "onRewardedVideoStarted", 
Toast.LENGTH_SHORT).show();
}
@Override
public void onResume() {
    mAd.resume(this);
    super.onResume();
}

@Override
public void onPause() {
    mAd.pause(this);
    super.onPause();
}

@Override
public void onDestroy() {
    mAd.destroy(this);
    super.onDestroy();
}
}

here is my code. I used many tutorial . Is there anything I did it in the wrong way?

Or I just missed some steps?

1

There are 1 best solutions below

0
On

I think this is not get video source. try again after few time