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
  • Qt 5.7 app to play video in android device

    Solved
    7
    0 Votes
    7 Posts
    3k Views
    E
    @med01 C:\Qt\MaintenanceTool.exe
  • 0 Votes
    3 Posts
    495 Views
    K
    Oh Thanks, It's work.
  • QSerialPort Async read - How to ensure full packet read

    Solved qt5 qserialport
    11
    0 Votes
    11 Posts
    3k Views
    M
    @SGaist That's precisely the idea! :)
  • How to handle two different input of two different switch at same time in qt ?

    Solved
    10
    0 Votes
    10 Posts
    921 Views
    SGaistS
    As we already suggested you should implement your own dialog, using the open method so the main loop can continue processing events.
  • Qt 5.15 meta-qt5 yocto build

    Unsolved
    1
    0 Votes
    1 Posts
    866 Views
    No one has replied
  • use Java code in Qt prolem of compilation

    Unsolved
    19
    0 Votes
    19 Posts
    2k Views
    SGaistS
    Please show some patience and allow at least 24 hours to pass before bumping your own thread. This is a voluntary driven forum and people may not live in the same time zone as you. I currently do not have a Windows machine at hand to check your issue. That said: did you try to apply my suggestion to start from a default project and once it's built, add the Java part ? did you check your gradle related files for encoding entries ?
  • Trying to show an encoded with base64 contents of a qvideoframe into html

    Unsolved
    9
    0 Votes
    9 Posts
    1k Views
    jsulmJ
    @Jafar-Sag-Sibil said in Trying to show an encoded with base64 contents of a qvideoframe into html: I want to show that image nothing else I had the impression that you wanted to show video. If you compare the qDebug() output to the html code you will see that your Base64 differ. You should use the QByteArray (ba) to convert to Base64, not buffer.
  • Binding QtService on Android from a native application

    Unsolved android service java androi service
    1
    0 Votes
    1 Posts
    617 Views
    No one has replied
  • 0 Votes
    3 Posts
    1k Views
    P
    Yes. This is the only error. And if I change the TEMPLATE to "lib" it is getting built properly. The problem is occurring only when I build it as an "app". I think I did some strange thing in qmake🙄
  • trying to select image, opens corrupt file browser

    Unsolved
    1
    0 Votes
    1 Posts
    216 Views
    No one has replied
  • JAVA&QT issue

    Locked Unsolved
    3
    0 Votes
    3 Posts
    369 Views
    jsulmJ
    Double post: https://forum.qt.io/topic/124729/use-java-code-in-qt-prolem-of-compilation/3 Closing. @ENSAO_CHEIKH Please do not double-post!
  • Qt Creator doesn't show anymore Android emulator application output

    Unsolved
    2
    0 Votes
    2 Posts
    363 Views
    M
    Im tried on Qt 5.15.2 & Qt Creator 4.14.2 - it shows QDebug output from app running on emulator (API 21 virtual device). Theres still issue with Android services - Qt Creator can't show output from different process (https://bugreports.qt.io/browse/QTCREATORBUG-24496, https://bugreports.qt.io/browse/QTCREATORBUG-16887)
  • inheritance problem

    Solved inheritance qobject subclassing
    8
    0 Votes
    8 Posts
    2k Views
    Pablo J. RoginaP
    @amina said in inheritance problem: it is working now great, so don't forget to mark your post as solved!
  • Something like MathJSON in QML. Is there any for iOS/Android?

    Solved
    2
    0 Votes
    2 Posts
    203 Views
    B
    Solution found issue closed. The formula should be in JavaScript compatible format and using https://doc.qt.io/qt-5/qjsengine.html QJSEngine myEngine; QJSValue three = myEngine.evaluate("1 + 2");
  • 0 Votes
    5 Posts
    799 Views
    J.HilkJ
    @LoudestBoi take a look at this topic and the example code by @benlau https://forum.qt.io/topic/75700/ios-photo-gallery-view-in-qt/7 should get you started/contain all you need
  • Android 11 scoped storage

    Unsolved
    1
    0 Votes
    1 Posts
    268 Views
    No one has replied
  • Make an XMLHttpRequest on Android

    Unsolved
    1
    0 Votes
    1 Posts
    325 Views
    No one has replied
  • How to build poco libraries for Android.

    Unsolved
    6
    0 Votes
    6 Posts
    905 Views
    SGaistS
    Androïd and Qt yes, Poco, no. However your issue is currently generic C++.
  • Qt Multimedia for iOS. How?

    Solved
    5
    0 Votes
    5 Posts
    824 Views
    B
    @sierdzio It's kind of bug and I don't know where. When I am running application on simulator from Qt Creator or XCode - It's not working with this kind of error: dyld: warning, Ignoring DYLD_IMAGE_SUFFIX because DYLD_ROOT_PATH is used. QML debugging is enabled. Only use this in a safe environment. 2021-03-19 11:44:48.708128+0300 Multimedia_v1[3197:73797] stale focus object QObject(0x0) , doing manual update 2021-03-19 11:44:49.617137+0300 Multimedia_v1[3197:74026] [plugin] AddInstanceForFactory: No factory registered for id <CFUUID 0x600000285820> F8BB1C28-BAE8-11D6-9C31-00039315CD46 When I run it on Device from XCode or QtCreator it's working. I mean about QMultimedia. I am running it via this code: In *.pro QT += multimedia In *.qml Video { id: video width : parent.width height : parent.height source: "URL Here" MouseArea { anchors.fill: parent onClicked: { video.play() } } focus: true Keys.onSpacePressed: video.playbackState == MediaPlayer.PlayingState ? video.pause() : video.play() Keys.onLeftPressed: video.seek(video.position - 5000) Keys.onRightPressed: video.seek(video.position + 5000) } For me issue closed with QMultimedia. If anyone knows why it's happening - write a message here. Created bug report https://bugreports.qt.io/browse/QTBUG-92003
  • Connecting Bluetooth headset to an embedded Linux device

    Unsolved
    1
    0 Votes
    1 Posts
    294 Views
    No one has replied