sohan vanani
sohan vanani

Reputation: 1574

Adrotator in Windows Phone 8.1. XAML

I want to integrate admob with adrotator in windows phone 8.1 .

xmlns:adRotator="using:AdRotator"
.....
 <adRotator:AdRotatorControl 
    x:Name="MyAdRotatorControl"
    AdHeight="90"
    AdWidth="728"
    LocalSettingsLocation="defaultAdSettings.xml"
    AutoStartAds="True" />

it gives me an error like

Cannot find type System.Windows.Controls.UserControl in module System.Windows.dll.

please give me solution how to use adrotator with windows phone 8.1. thanks in advance.

Upvotes: 3

Views: 426

Answers (1)

mkabatek
mkabatek

Reputation: 1276

Right now this is not possible because Ad Rotator uses the Windows Phone 8.0 AdMob SDK. The error you are seeing is the same error you will get when trying to use the Windows Phone 8.0 AdMob SDK inside a Windows Phone 8.1 project. See this google groups post. Until Google releases their AdMob SDK for Windows Phone 8.1, Ad Rotator + AdMob will not work on Windows Phone 8.1.

Upvotes: 2

Related Questions