I have an app that ive created in C# using xamarin in visual studio. In the oncreate method i have registered the app id
base.OnCreate(bundle);
Android.Gms.Ads.MobileAds.Initialize(ApplicationContext, "ca-app-pub-xxxx~xxx");
global::Xamarin.Forms.Forms.Init(this, bundle);
In the renderer i have added the adunitid
var ad = new AdView(Context)
{
AdUnitId = "ca-app-pub-xxxx"
};
AdRequest requestbuilder = new AdRequest.Builder()
.Build();
The test ads show in debug mode but once i go live and release in the app store ads dont show up at all. Am i doing something wrong?