Is it possible to create a UWP application for different windows 10?

I use “NavigationView” in my project, but it works on Windows 10 build 16299 or higher, so I have to use “SplitView” for lower builds. Now I like to know: Is it possible to create a UWP application for different windows 10?

+5
source share
1 answer

The answer to your question: yes, you can create different versions of your application package designed for different ranges of Windows 10 numbers. For example, you can send a package that is designed for 16299, and the other for 15063 and lower. The Store will then provide the user with the correct package.

However, the best way to achieve the same result is to make the application adaptive to the OS version, as described in MSDN here: https://docs.microsoft.com/en-us/windows/uwp/debug-test-perf/version-adaptive-apps

Starting with version 15063, the adaptive code version can also be used in XAML, as described here: https://docs.microsoft.com/en-us/windows/uwp/debug-test-perf/conditional-xaml

+2
source

Source: https://habr.com/ru/post/1276290/


All Articles