0

i have integrated Admob Mediation as below

mInterstitialAd = new InterstitialAd(this);
  mInterstitialAd.setAdUnitId(getString(R.string.ad_unit_id));
mInterstitialAd.setAdListener(mAdListener);

InMobiAdapterExtras inMobiExtras = new InMobiAdapterExtras();
MoPubExtras moPubExtras = new MoPubExtras();
AdRequest adRequest = new AdRequest.Builder()
 .addNetworkExtras(moPubExtras)
 .addNetworkExtras(inMobiExtras)
 .build();

mInterstitialAd.loadAd(adRequest);

it shows ads live (app is in store now) since a month but doesn't showing any impression count am I doing any thing wrong with this code

AMD
  • 1,662
  • 18
  • 39
  • Where doesn't it show any impression count? And where are you providing your AdUnitId? – William Oct 07 '15 at 21:30
  • @ william it shows me ads on device but wont show impression on admob official account panel i have updated code section – AMD Oct 08 '15 at 05:34

1 Answers1

0

There is a problem with mediation api problem remain same after getting response from mediation team

I have ended up using separate integration of inmobi and mopub without mediation rather then wasting hours in checking response from mediation team.

AMD
  • 1,662
  • 18
  • 39