JP Hellemons
JP Hellemons

Reputation: 6047

Adcontrol Windows Phone does not show

I have read this (similar) question: Windows phone ads not working And I have read this blog post. But it still does not work. I have the feeling that it has something to do with my references. Or is it that it does not show up debugging the app on my phone? (because my cpu is too old to run emulation)

references

my xaml:

xmlns:ads="clr-namespace:Microsoft.Advertising.Mobile.UI;assembly=Microsoft.Advertising.Mobile.UI"

and below:

<ads:AdControl x:Name="showMeTheMoney" 
                  ApplicationId="a pubcenter id" 
                  AdUnitId="a pubcenter ad unit id" 
                  HorizontalAlignment="Left"
                  Height="80" Margin="0,0,0,0" 
                  Grid.Row="1" 
                  VerticalAlignment="Top" 
                  Width="480"/>

in pubcenter I have registered the app and adunit and also the size (480 x 80) But it is still a black square on my phone. Also the manifest has the required rights:

manifest rights

why you no show?

Upvotes: 2

Views: 645

Answers (1)

Martin Suchan
Martin Suchan

Reputation: 10620

Ads using real ApplicationId and AdUnitId are not working in emulator, for testing you should use test values located here:
Test Values for AdUnitId and ApplicationId

Upvotes: 1

Related Questions