Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.2k Topics 62.7k Posts
  • post to http [SOLVED]

    8
    0 Votes
    8 Posts
    2k Views
    M
    Hi @p3c0 , I use Qt 5.4 for IOS/android. And install my program to my Android Phone. My partner use IAR to detect my request on server side. He told me that he don't receive my "Ssid" command from request link. But I had solved this problem by using setQuery method. Thank for you reply.^^
  • 0 Votes
    1 Posts
    708 Views
    No one has replied
  • Background process on IOS

    5
    0 Votes
    5 Posts
    4k Views
    mrdebugM
    Have you found the solution? In iOS I see all threads will be stopped when the app goes in background. in Android only the main thread will be stopped, the other threads can work.
  • 0 Votes
    0 Posts
    611 Views
    No one has replied
  • Publishing on the App Store using Qt Creator

    22
    0 Votes
    22 Posts
    7k Views
    P
    @philippeb8 It works now! I had to disable the GPU Frame Capture in the Run Scheme
  • 0 Votes
    2 Posts
    1k Views
    SGaistS
    Hi and welcome to devnet, That's a question better asked on the interest mailing list. You'll find there Qt's developers/maintainers (this forum is more user oriented)
  • [SOLVED]Capturing application sleep/wake in Qt

    ios
    3
    0 Votes
    3 Posts
    2k Views
    D
    @p3c0 Thank you! That did the trick!
  • QT 4.6.2 and QMediaPlayer

    qmediaplayer li
    7
    0 Votes
    7 Posts
    2k Views
    SGaistS
    QProcess details is worth reading anyway. You can more easily integrate it within your application if you need more control about mplayer
  • [Solved] Qt5 Debugging Problem

    4
    0 Votes
    4 Posts
    3k Views
    L
    @LouisRyan Thanks...
  • Cant run app for Android

    android avd kit
    3
    0 Votes
    3 Posts
    1k Views
    dionis.D
    I have downloaded QT from here, it is the only url I founded for Qt for Android. I don't know if it is the right one, or if there are additional packages needed.
  • 0 Votes
    34 Posts
    17k Views
    SGaistS
    Looks like a bug, you should check on the bug report system
  • Can't build project to android device

    android linux cross compile ubuntu
    13
    0 Votes
    13 Posts
    9k Views
    SGaistS
    Did you name one of your target android ?
  • QPushButton with duplicated text

    qpushbutton qt5 android c++
    7
    0 Votes
    7 Posts
    3k Views
    S
    Hello again! I managed some progress! I had to recreate the entire widget and this time I gave a bit more size to it. Just using QtCreator, scaling the main frame of the widget. Now, all button label is dispalyed correctly. Also, the size policy of the ui elements has been changed to Expanding. Okay, I know that this is just a treatment of the problem and does not explain why it occurs, but I am happy with this result now. :)
  • undefined symbol: _ZN7QWidget8qwsEventEP8QWSEvent

    4
    0 Votes
    4 Posts
    2k Views
    SGaistS
    So you can run a default project but not yours ?
  • Problem with Qml Camera captureToLocation

    2
    0 Votes
    2 Posts
    1k Views
    SGaistS
    Hi, I might be wrong but I think in the case of Android, the location should be the filename. When you capture an image on mobile device like a phone all images go to the same standard location
  • Discover full screen resolution of Android Device in Immersive mode

    3
    0 Votes
    3 Posts
    2k Views
    A
    Thanks for the reply fecub. My problem is with the QScreen class. qApp->primaryScreen() returns a pointer to QScreen and I am using the function geometry() to find out the size but it is not the actual pixels of the device rather the "window" which is the full screen minus the navigation bar.
  • 0 Votes
    2 Posts
    1k Views
    A
    I found a workaround: Define environment variable within Qt application startup context: QML_USE_GLYPHCACHE_WORKAROUND = 1 Look on this topic: https://forum.qt.io/topic/39803/font-rendering-bug-on-some-android-devices/7
  • [Solved] Fonts won't load on iOS but loads on Android

    ios android font
    7
    0 Votes
    7 Posts
    4k Views
    cybercatalystC
    This is correct. This will be most likely a Windows-related problem with the ttf font.
  • [SOLVED] mp3 on Android

    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • QSerialPort alternative for Android?

    5
    0 Votes
    5 Posts
    3k Views
    D
    Hi kuzulis, Thank you very much for your suggestion. That is exactly what I did - compiled and installed [QtSerialPort] manually and now I have the class available for my Android application. For some odd reason, the building stage didn't complete exactly, so I manually copied over the compiled files to the Qt directory. {From} ...\QtSerialPort\build\include => Copied [QtSerialPort] to <Qt dir>\android_armv7\include {From} ...\QtSerialPort\build\lib => Copied [libQt5SerialPort.la; libQt5SerialPort.prl; libQt5SerialPort.so] to <Qt dir>\android_armv7\lib {From} ...\QtSerialPort\build\mkspecs\modules => Copied [qt_lib_serialport.pri] to <Qt dir>\android_armv7\mkspecs\modules Even though the working solution doesn't answer my initial question, I do believe this thread has been solved. I am interested to know if I am neglecting something by manually copying over the build files - let me know if you could. Thanks again!