WP8 AdMob

Hi there

i’m using the latest Dev-Build Release of MonoGame and i would like to use AdMob Interstitial Ads in my WP8 MonoGame Project.

What is the recommended way to do that ? Use the latest AdMob SDK for WP8 or AdRotator (v2) ?

WP8 or 8.1 template? At my last download of the dev branch (a week or two ago), the WP8 template wasn’t working…

If you’re using WP8.1, you’re out of luck with admob - at the moment, it only works with WP8

Of course, if the WP8 template is working now, so much the better!

thanks for your reply. I use the WP8 Template, but i had several problems

interstitialAd.ShowAd(); throws an Exception “Invalid cross thread access”, but i fix it with

Deployment.Current.Dispatcher.BeginInvoke(() =>
{
    try
    {
        interstitialAd.ShowAd();
     }
     catch (Exception ex)
    {
      Debug.WriteLine(ex.Message);
   }
});