Can applications written for Windows 8 work on Windows Phone 8?

As Microsoft stated that Windows 8 and Windows Phone 8 use the same code base. If I use visual studio 2012 RC, Iโ€™m writing an application for Windows 8. I want to know if I can install and run the same application on a Windows 8 phone? If so, we can prepare for the Windows SDK 8 SDK by exploring Visual Studio 2012 RC for Windows 8 today!

+4
source share
4 answers

They havenโ€™t announced anything right now, so thatโ€™s just my guess.

I assume that you cannot deploy the same application (xap file) in WP8 and Windows 8. This is by design. What for? Because they are very different systems. Your beautiful, fast and awesome Windows Phone app will suck Windows 8. No silver bullet. This is the same for HTML. You must create a separate mobile version of the web application, otherwise no one will use it.

+4
source

They use the same core and probably many APIs. But this does not mean that the runtime environment in which your applications are running is the same. For instance. very different form factors make it necessary to adapt the application anyway. Since they never said that Windows Phone 8 has the same application programming model as Windows 8, at the moment you can hope that you will not be able to deploy the same application for both Windows 8 and Windows Phone eight.

As you say, you can probably share a lot of code between both systems, especially if you use C # or C ++ (with native applications running on WP8 too).

+3
source

An application compiled for WP8 will not run only on Windows 8, but you can share a lot of code into shared libraries.
The Windows Phone 8 SDK has a chapter on setting up both Windows 8 and Windows Phone 8. This is mainly possible either using Portable Class Libraries, referring to regular files in W8 projects, WP8, or using Windows components Runtime
http://www.microsoft.com/en-us/download/details.aspx?id=35471

+1
source

Many applications developed for wp8 work with Windows8 as well, since the developer must also decide whether he will work in both cases, usually Windows8 lacks graphical and motion control, so some WP games do not start on windows8, you can always see any notification of permission to use the application to understand whether it works on wp8 or not, on the other hand, there was also a game with windows in which there were so many graphic elements that WP could not be launched, For example, if you want the game to look like on assassi s, it will work as the operating system (WP, window), and differently Thus, it selects the properties of the game which determine the cap to run or not

0
source

All Articles