Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Whether Windows 8.1 apps will work in Windows 8 PC?

I am developing an application in Windows 8.1 Preview release using VS 2013. When i deploy the App package in the Windows 8 PC, it did not run. I have a small question that whether Windows 8.1 developed apps will run in Windows 8 PC. If it needs to run, any other specification suppose to be provided for the apps or PC ?

like image 726
David Bekham Avatar asked Oct 03 '22 06:10

David Bekham


1 Answers

If you target 8.1 then the app will not run in windows 8. That is because the api of 8.1 is extended and the new features do not exist in windows 8. If you develop in windows 8.1 and you target windows 8. Then the apps will just work out of the box.

For example, windows 8.1 supports new controls. If you target 8.1 you can use those controls, but when you use windows 8, those controls do not exist and thus the application cant run.

like image 102
SynerCoder Avatar answered Oct 13 '22 01:10

SynerCoder