Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.1k Topics 62.5k Posts
  • 0 Votes
    5 Posts
    2k Views
    SGaistS
    Great and thanks for sharing the solution ! Since you have it working now, please update the thread title prepending [solved] so other forum users may know a solutions has been found :)
  • Problems to deploy application to Windows Phone 8.1

    1
    0 Votes
    1 Posts
    610 Views
    No one has replied
  • Are all QtWidgets available when doing Qt Mobile Development?

    6
    0 Votes
    6 Posts
    2k Views
    SGaistS
    Neither are supported because of the current restriction imposed by their respective platform. For iOS, it's a rule of the AppStore to use Apple's webkit. For Android I don't currently remember. Anyway for basic web usage you have now the new "QtWebView":https://qt.gitorious.org/qt/qtwebview/ module that provides an interface to the native web views for both
  • Android share button

    2
    0 Votes
    2 Posts
    1k Views
    D
    I found the solution !! https://www.calligra.org/blogs/sharing-with-qt-on-android/ Have a nice code!
  • Add static libary of windows --.lib-- in project Qt/Adroid [solved]

    6
    0 Votes
    6 Posts
    2k Views
    SGaistS
    You'r welcome ! Since you have your libraries now, please update the head title prepending [solved] so other forum users may know a solution has been found :)
  • The mediaplayer for no-xcb environment

    5
    0 Votes
    5 Posts
    1k Views
    SGaistS
    Hi, gstreamer is a backend in QtMultimedia. On the other hand QtGStreamer is a wrapper library were you use gstreamer. With it you e.g. build the pipeline that you want to use. It provides various sync to paint on widget/QML/OpenGL widget. Note that the QtGstreamer library is not part of the Qt distribution it's an independent project
  • ComboBox drop down symbol not shown on Android

    1
    0 Votes
    1 Posts
    444 Views
    No one has replied
  • QSerialPort not getting readyRead signal from UART

    6
    0 Votes
    6 Posts
    3k Views
    K
    Hmm.. It is strange that QtSerialPort works on WinCE, because its sources was broken (may broken, as I know). It is just magic.. :)
  • Qt Enterprise Embedded - Android

    2
    0 Votes
    2 Posts
    638 Views
    A
    Yes, both 4.2 and 4.4 are supported. As for installing it on an unlocked consumer device, it depends. The Nexus 7 is guaranteed to work. Others may not. See http://blog.qt.digia.com/blog/2014/07/04/making-an-android-device-boot-to-qt/
  • 0 Votes
    7 Posts
    1k Views
    H
    But my calqlatr on windows phone 8.1 don't have this bug. Is there any solution?
  • Qt 5.4 beta 1: App not running on Android simulator anymore

    7
    0 Votes
    7 Posts
    3k Views
    K
    Thanks for quick reply and your suggestions. Unfortunately I was unable to resolve my problems. I have managed to work around the genymotion crash however, I downgraded the virtual-device image I was using to 4.3 ABI 18.
  • Android live wallpaper with Qt

    5
    0 Votes
    5 Posts
    2k Views
    K
    Unfortunately I cannot help you with this. I am however also interested in how this would be accomplished as it would be a cool thing to do.
  • [solved] Qt for Embedded Linux or Qt Enterprise Embedded?

    12
    0 Votes
    12 Posts
    5k Views
    JKSHJ
    [quote author="metRo_" date="1420753935"]It says that the enterprise edition comes with pre-built software stack for linux and android, there is anyway to built it from the Community edition? Or it is a Enterprise only feature?[/quote]The software stack is Enterprise only. Essentially, the folks at Digia put together a custom Linux distro that is optimized for deploying, running and debugging Qt applications in embedded systems. That distro is the software stack. (I don't know what exactly is in the stack -- it could be open-source software plus commercial Qt, or it could contain custom-written software too) The Community version of that is to build a distro (Ubuntu, or Angstrom, or something else) that contains Qt libraries. The "Yocto Project":https://www.yoctoproject.org/ is a good place to start. Further reading: "HTG Explains: What’s a Linux Distro and How Are They Different?":http://www.howtogeek.com/132624/htg-explains-whats-a-linux-distro-and-how-are-they-different/
  • 0 Votes
    2 Posts
    2k Views
    H
    I ended up changing the QAndroidPlatformFontDatabase to load only one font: the NotoSans CJK Japanese otf font. Apparently the other languages fall back to the system's loaded fonts because all of the other language glyphs (Russian, Portuguese, Spanish, Chinese, Korean, etc.) are displayed properly. I'm not sure exactly why this works, but it works. I'm closing this topic.
  • GPS on Windows Phone 8.1 ? (solved)

    5
    0 Votes
    5 Posts
    2k Views
    M
    Youc an also specify the capabilities to be used inside the pro file, so that you do not need to manually update the Manifest each time. Check http://doc.qt.io/qt-5/qmake-variable-reference.html#winrt-manifest for more documentation. In that specific case add the following to your .pro file: WINRT_MANIFEST.capabilities_device = location
  • 0 Votes
    3 Posts
    2k Views
    M
    Actually as also indicated in the bug report, you can create a package including a recources.pri and that is via Visual Studio. Visual Studio usually takes also other steps when you are uploading a package to the store and you need to use it in any case. So my proposal is to let VS create the final package for you to have all requirements set.
  • PTXdist 2012.03.0 + QT 5.4.0

    2
    0 Votes
    2 Posts
    1k Views
    SGaistS
    Hi and welcome to devnet, You should rather check with the PTXdist guys, they are more likely to be able to help you with that error
  • Problem deploying application with -qws argument on Raspberry Pi

    2
    0 Votes
    2 Posts
    670 Views
    SGaistS
    Hi, That's a bit vague. You should add what option you used to cross-compile Qt , which version you are running etc.
  • 5.4 final - Andoid examples not running

    3
    0 Votes
    3 Posts
    1k Views
    SGaistS
    Hi, That could be something you could suggest as a feature request on the "bug tracker":https://bugreports.qt.io/
  • Rotate display 180 degrees (Widgets/EGLFS)

    5
    0 Votes
    5 Posts
    3k Views
    X
    It was definately my mistake. The screen did properly rotate after I fixed that. I'm surprised that I didn't have to rotate the resistive touch sense 180 as well (which I know can be done with an environment variable) - it just worked! The mouse not being rotate is a bit odd, but this is a non-issue in our application. Laszlo, thank you!