Hi,
I’m using unity 4.6 beta 20 right now and just discovered that when I build Windows Store Universal 8.1 project, windows phone 8.1 ad control are not clickable.
Windows Store 8.1 ad controls works fine, and Windows phone 8.1 ad controls also loads ad fine, but my problem is that when i click (tap) the windows phone ad control, nothing happens.
Below are my mainPage.xaml code:
<SwapChainPanel x:Name="DXSwapChainPanel">
<Grid x:Name="ExtendedSplashGrid">
<Image x:Name="ExtendedSplashImage" Source="Assets/SplashScreen.png" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Grid>
<ui:AdControl x:Name="AdCont"
AutoRefreshIntervalInSeconds="60"
ApplicationId="test_client"
AdUnitId="Image320_50"
HorizontalAlignment="Left"
Height="50"
IsAutoRefreshEnabled="True"
Margin="40,110,0,0"
VerticalAlignment="Top"
Width="320"
></ui:AdControl>
</SwapChainPanel>
I’m using empty unity project and didn’t change anything in app.xaml.cs
P.S. I’m using Lumia 620 as my test device if that matters…