Im new to using adMob with android studio and I have a quick question. For the device ID in the adRequest i wrote AdRequest.DEVICE_ID_EMULATOR
and everything works when i run the app on genymotion the ads come up etc. and it also works when I test on an actualy phone device. I wanted to ask though do i keep DEVICE_ID_EMULATOR
as the device Id or do I change to something else so the ads come up on every phone that has my app?
AdView adview = (AdView)this.findViewById(R.id.adView);
AdRequest adRequest=new AdRequest.Builder().addTestDevice(AdRequest.DEVICE_ID_EMULATOR).build();
adview.loadAd(adRequest);