we integrated Google DFP in our Android app. Now we would like to add support with InMobi but I found no guide to add the mediation of InMobi through DFP. Is there any guide / tutorial / example?
This is the code we have used for dfp:
import com.google.android.gms.ads.doubleclick.PublisherAdRequest;
import com.google.android.gms.ads.doubleclick.PublisherAdView;
...
public void onCreate(Bundle savedInstanceState) {
...
mAdView = (PublisherAdView) findViewById(R.id.ad_view);
PublisherAdRequest adRequest = new PublisherAdRequest.Builder().build();
mAdView.loadAd(adRequest);
}
thanks