I am trying to use Vungle-Admob adapter but I am not sure whether it is working or not. I followed the instruction at
https://support.vungle.com/hc/en-us/articles/204222794-Get-started-with-Vungle-Android-SDK, but how do I use the adapter actually and how do I test it?
I tried to addVungleAdapter like the following:
AdRequest adRequest = new AdRequest.Builder()
.addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
.addTestDevice("3156********") // my device id
.addNetworkExtrasBundle(VungleAdapter.class,bundle)
.build();
Is that all I need to do? Even though it just keep showing the AdMob's static interstitial ads.
I also tried to use VunglePub (like in
https://support.vungle.com/hc/en-us/articles/204222794-Get-started-with-Vungle-Android-SDK). It works fine, but does it link with AdMob at all? I was hoping to get mediation going across multiple different ads network through AdMob.
Can anyone help me with this?