I developed a qml application using designer studio and i want to run application in iPAD.
How to run QT designer studio application in my ipad
Assuming you are using Qt Design Studio for doing your UI Design in QML and your app is written in C++, you would need to use X Code or Qt Creator in order to build your IOS app. Just bring your qml project into your c++ project, make the bindings to the backend and then build your app from there. Here is a starting point for that - doc.qt.io/qt-5/examples-ios.html
Related
I have a QT widget app that I have been making for some time. I want to make GUI for it that looks rich and good. QT Design studio seems a good choice but I can't find resources to be sure that QT design studio GUI can be implemented to QT Widgets app.
Can I integrate UI from QT Design Studio to QT Widgets App (not QML app)?
I found a few links but they are not very clear. Can you help me answer this question, please?
No; Qt Design Studio generates QML, whereas Designer generates .ui files for widget applications.
I just created a Blank Xamarin Portable Project in VS2015 Enterprise.
But I can't get xap file for Window Phone 8.1.
My project name is ABP so I have only ABP.dll, ABP.pdb, ABP.WinPhone.build.appxrecipe, ABP.WinPhone.exe etc.
I want my client to run using xap file on his win phone.
Is there a way for this?
Portable Project is simply a Class Library that gives you a DLL. Its not an application. For that purpose you must create WinPhone application or Xamarin.Forms application(it will create a WinPhone application for you). Once you create WinPhone app, right click to project and select Store->Create App Package then follow the commands.
I have already created Qt based application which uses some third-party open source library like OpenCV, I have looked Windows Dev Center and seems the all the reference is using Visual Studios and other Windows tool. I have created my App using Qt creator. Is it possible to submit such an application on Windows App store?
Any help will be appreciated,
Thanks
Haris
Bad news: Microsoft does not support Win32 apps on AppStore yet (but it has been announced, currently under development as "Project Centennial"). It looks like an "old-school" desktop applications cannot be submitted to the Windows App store.
Good news: Qt has support for WinRT (complete in Qt 5.6 which is currently in Beta and will be released in a few weeks). And qmake can generate a Visual Studio solution from your project (in case you need it for deployment or debugging; VS Community edition is free).
Qt WinRT tutorial: http://doc.qt.io/qt-5/winrt-support.html
OpenCV in WinRT: https://msopentech.com/blog/2014/03/20/easily-build-opencv-powered-apps-for-windows-store/
On the qt-project web-site there're available sources as for porting QML to iOS, Android.
http://qt-project.org/doc/qt-5/portingtoandroid.html
http://qt-project.org/doc/qt-5/porting-to-ios.html
It appears to be easy.
Is it so for Windows Phone as well?
Is it so for any other platform?
Qt Project has a Qt for WinRT tutorial providing a step-by-step process to build applications for Windows 8 based devices. Basically to resume the tutorial :
You need the appropriate windows runtime
You may have to build Qt from source for that runtime library
You develop and compile Qt as you would do for a desktop app
You have an additional step for packaging the application.
I am using QT 4.7.3. I do not have `QService in my QT.
Can anyone tell me how can I create the service for my desktop application?