I have very simple application in QT. Now I want to test it in my Windows phone. Do you know how can I do it?
I cann not find anything on the internet. I only need a simple description of how to do it.
Thank you.
Ok. There is a way descripted in this video https://www.youtube.com/watch?v=o5Xdt-j3hkA
qmake.exe -tp vc CONFIG+=windeployqt
D:\Develop\Qt\5.7\winrt_armv7_msvc2015\bin
by add path set path=%path%;D:\Develop\Qt\5.7\winrt_armv7_msvc2015\bin
devenv yourapp.vcxproj
Solution configuration = Release; Solution platforms=ARM; Green arrow(build)=Device;
After build into the device, VS connect to my device. Install needed prerequisities and add to mobile menu new item with my application name. Then automaticly run app.
If you have error:
'uuidgen' is not recognized as an internal or external command. uuidgen.exe missing in you path. I added set path=%path%;C:\Program Files (x86)\Windows Kits\10\bin\x64
, where is uudigen.exe.
If you have error:
Project ERROR: No UCRTVersion found in environment.
You must open your .qmake file (some like this .qmake.winrt_uuid_yourapp) and add line WINRT_MANIFEST.minVersion = 10.0.10586.0