I have implemented google's Admob banner ads in my app. I tried this for that
AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder()
// Add a test device to show Test Ads
.addTestDevice(AdRequest.DEVICE_ID_EMULATOR).addTestDevice("")
.build();
mAdView.loadAd(adRequest);
I want to know number of banner ads i can show so that policy don't get conflict.