How to check on which Windows platform the application is running
-
Hello,
Can anyone tell me how can I tell if I the application is on mobile or desktop version of Windows?
I am interested because there are certain features I want to have on desktop and not on mobile, such as: start application on login, tray icon, etc. -
Hi,
What do you mean by Windows mobile ? What target do you have mind ?
-
Hello,
Can anyone tell me how can I tell if I the application is on mobile or desktop version of Windows?
I am interested because there are certain features I want to have on desktop and not on mobile, such as: start application on login, tray icon, etc.@adutzu89 my guess is, QString QSysInfo::productVersion() could help you.
-
Well, I want to allow my application to run on desktop / tablets / phones.
But from what I know most mobile devices (tablets and phones) can run on x86_64 arhitecture which can be misleading as this can return from any type of device using Windows 10, no?
So how can I differentiate between these types of devices. -
@adutzu89 my guess is, QString QSysInfo::productVersion() could help you.
-
Well, I want to allow my application to run on desktop / tablets / phones.
But from what I know most mobile devices (tablets and phones) can run on x86_64 arhitecture which can be misleading as this can return from any type of device using Windows 10, no?
So how can I differentiate between these types of devices. -
Then you may have to deal with some native APIs depending on how fine grained your need your informations to be.
You could also take a look at the WinRT QPA for some ideas.
-
@adutzu89 Microsoft is giving up on Windows mobile, so supporting it doesn't make sense in the future. And Windows Mobile was running on ARM, not x86.
@jsulm had a feeling there where some x86 phones, but didn't bothered to check before posting.
I have my doubts about the phone being dead, keep in mind that Win10 phones are still getting updates, there is UWP, project Andromeda, Windows tablets, but this isn't the place to discuss this stuff.
Ty for your answer. -
@jsulm had a feeling there where some x86 phones, but didn't bothered to check before posting.
I have my doubts about the phone being dead, keep in mind that Win10 phones are still getting updates, there is UWP, project Andromeda, Windows tablets, but this isn't the place to discuss this stuff.
Ty for your answer.