i wanted to ask if it's just me not getting any adds (NoFill error) or the admob sdk should actually be update to wp8.1?
<GoogleAds:AdView AdUnitID="ca-app-pub-XXXXXXXX/YYYYYYYY"
Format="Banner"
FailedToReceiveAd="OnFailedToReceiveAd"
VerticalAlignment="Bottom" Margin="0,0,-23,86" />
What might be alternative ad platform solutions that do work on wp 8.1 ?
Maybe you can use Microsoft Advertising SDK for Windows Phone (Updated 09/05/2014)
http://visualstudiogallery.msdn.microsoft.com/fba0c64e-358e-4b86-8e69-d6b57771d92a
Admob not work on Windows Phone 8.1 yet, only on Windows Phone 8 or Windows Phone Silverlight 8.1
https://groups.google.com/forum/#!msg/google-admob-ads-sdk/5WyPFuMGKig/xGnh_nw8nQgJ
Related
I have windows phone 8.1 XAML project on visual studio 2015 (update 3) after install Microsoft Advertising SDK for Windows Phone from this URL
I can't found in Extensions Microsoft Advertising SDK for Windows Phone 8.1 (XAML). Any idea why?
It is correct if you install Microsoft Advertising SDK for Windows Phone from this URL. In visual studio Windows Phone 8.1 XAML project:
If your project targets Any CPU, update your project to use an architecture-specific build output (for example, x86).
From the Solution Explorer window, right click References, and select Add Reference…
For a Windows Phone 8.1 project: Expand Windows Phone 8.1, click Extensions, and then select the check box next to Ad Mediator SDK for Windows Phone 8.1 XAML.
Modify the XAML for the page where you are embedding advertising to include the Microsoft.Advertising.WinRT.UI namespace.
More details, please see Add Microsoft Advertising SDK
I'm developing app for Windows Phone 8.1. Will I be able to port it to run on Windows Phone 8?
Nope. Windows Phone 8 apps use Silverlight while Windows Phone 8.1 (Universal) apps use WinRT.
I can't find any SQLite.Net.Platform library that works with Windows Phone 8.1.
These are not working:
https://www.nuget.org/packages/SQLite.Net.Platform.WindowsPhone8/
https://www.nuget.org/packages/SQLite.Net.Platform.WinRT/
https://www.nuget.org/packages/SQLite.Net.Platform.Generic/
https://www.nuget.org/packages/SQLite.Net.Platform.Win32/
Any workaround?
WinRT platform is compatible with Windows Phone 8.1 projects. You can copy the sources to your platform specific project and instantiate the connection using SQLitePlatformWinRT class.
Is it possible to work application, which developed for 8.1 OS, in Phone which have 8.0 OS?
As far as I know you can't. You could only deploy 8.1 apps on a device which is updated to 8.1. It's just a matter of updating the 8 OS. But after the 8.1 update you could still deploy WP8 apps too.
For more:
http://msdn.microsoft.com/en-us/library/dn642082(v=vs.105).aspx
I have a windows phone class library built using the WP8...Is it possible to upgrade this library to support WP 8.1? If yes how can it be done using visual studio 2013?
I would strongly suggest to create a new Portable Class Library instead of a Class Library. Theese PCLs can then be used in Windows Phone 8.1 and Windows 8.1 Projects.
If the Library worked on Windows Phone 8, you should be able to simply copy over the code from the Class Library to the PCL.
Depends on if you want to use it with Windows Phone Silverlight 8.1 or Windows Phone 8.1 (XAML).
For Windows Phone Silverlight 8.1 you do not need to do anything, you can reference your WP8 lib from a Windows Phone Silverlight 8.1 without any problems. You can upgrade it to 8.1 in Visual Studio (right click on project and Retarget to Windows Phone 8.1).
You cannot use a WP8 lib with Windows Phone 8.1 (XAML) app and you cannot upgrade it to be used with Windows Phone 8.1 (XAML), you need to create a new one a copy and paste parts that work with Windows Phone 8.1 (XAML).