Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. deploying
    Log in to post

    • UNSOLVED Image and Video Qt application won't work on new PC
      General and Desktop • deployment dependencies deploying • • Kinesis  

      4
      0
      Votes
      4
      Posts
      608
      Views

      No, as suggested in my previous post, you have to deploy the Qt Multimedia plugins. Did you use windeployqt to prepare your application for deployment ?
    • UNSOLVED Cross-compile and deploy from linux to windows
      Installation and Deployment • linux cross compile windows 10 deploying compiling • • Tranquil  

      10
      0
      Votes
      10
      Posts
      16549
      Views

      @Tranquil I don't know how you read your text-file. But if it is for example with QTextStream, you coulc read line by line, call QString QString::simplified() const on it. that removes all leading and trailing whitespaces and reduces al other whitespaces to a simple single space. That should include tab and multiple spaces. Than QString::splitRef(QChar::Space); on it and you have a vector of all your entries (in StringRef format) -> convert it to your container.
    • SOLVED Deploy QT Application on any mac
      General and Desktop • mac os x problem deploying • • EL_Mambo  

      5
      0
      Votes
      5
      Posts
      921
      Views

      @J.Hilk said in Deploy QT Application on any mac: macdeploy Yes you saved my life ! Works perfectly, thanks ! I had to change @rpath to @executablepath tho This link helped me doing it if someone has the same problem one day https://stackoverflow.com/questions/2809930/macdeployqt-and-third-party-libraries
    • UNSOLVED Android deployment with Ministro
      Mobile and Embedded • android qt 5.7 deploying ministro • • KroMignon  

      21
      0
      Votes
      21
      Posts
      6694
      Views

      @raven-worx : I've got an answer from BogDan Vatra, in fact Ministro does not support Qt 5.7.x This is why nothing works when generating APK with Ministro. Qt5.7.x support will be added some time later. This is a bad news for me... I can't wait for a Ministro update. So I found a workaround, I give it here, perhaps this could help someone else. I have create a APK with Qt lib included, in release mode but not signed. From this APK, which is in fact a ZIP archive, I've extract all Qt specific stuff: assets/--Added-by-androiddeployqt--/* lib/armeabi-v7a/libplugins_* lib/armeabi-v7a/libqml_* lib/armeabi-v7a/libQt5* lib/armeabi-v7a/libgnustl_shared I copy those files on device, into internal storage. Then, I generate new APK (same configuration: release, with Qt libs and not signed). To generate the update APK, I remove from this the Qt specific stuff (so APK size is now less than 2MB). I transfer this APK on device, on device side I insert missed Qt libs into. Then I start APK installation on device. This a very dirty way to do it, but it WorksForMe(TM)
    • windeployqt.exe doesn't create a working package
      Installation and Deployment • windows qt 5.6.0 deploying • • kalmant  

      9
      0
      Votes
      9
      Posts
      4317
      Views

      @SGaist no, I did not. I just tried it with --qmldir specified and it worked flawlessly. Lesson learnt. However, I feel the deployment article could be a little more informative. I appreciate the help!
    • SOLVED QSqlDatabase: QPSQL driver not loaded once again!
      Installation and Deployment • deploy postgresql qsql deploying qpsql • • mbnoimi  

      18
      0
      Votes
      18
      Posts
      11190
      Views

      Thank you very much @SGaist and @raven-worx for helping me out. I fixed this issue by using runtime libraries from this project: https://sourceforge.net/projects/postgresql-mingw-w64/
    • UNSOLVED Deploying Qt Quick Desktop Application
      QML and Qt Quick • qml deployment quick deploy deploying • • Marco B  

      1
      0
      Votes
      1
      Posts
      855
      Views

      No one has replied

    • [Solved] cross-compiling to pandaboard ES
      Mobile and Embedded • cross compile desktop deploying pandaboard • • m4kas  

      23
      0
      Votes
      23
      Posts
      6001
      Views

      Yes i already did it. Thanks!
    • How to deploy qt5 qml plugin to android?
      Installation and Deployment • qml c++ android qt creator plugin qt 5.4.1 deploying • • gorec323  

      1
      0
      Votes
      1
      Posts
      709
      Views

      No one has replied

    • Deploying Qt Quick Application Windows
      QML and Qt Quick • qml windows qt quick deploying • • Lixcode  

      3
      0
      Votes
      3
      Posts
      1121
      Views

      Hi @JKSH! It worked. Thanks a lot!
    • macdeployqt: specify framework location?
      General and Desktop • mac macdeployqt deploying • • Braden  

      8
      0
      Votes
      8
      Posts
      2980
      Views

      "Is this something that's part of a newer Qt distribution, or something you've customized?" My customization that I wanted to contribute as well but there were obstacles that prevented this. The customized macdeployqt could be given additional include paths where to search for dependencies, so I think it could help you solve your case.