Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.1k Topics 62.6k Posts
  • Wake up from sleep Android 4.4 Qt

    Unsolved
    1
    0 Votes
    1 Posts
    575 Views
    No one has replied
  • Can not deploy app from qtcreator, error code 1073741515

    Solved
    8
    0 Votes
    8 Posts
    1k Views
    GiorgiG
    Ok. Thanks
  • Qt C++ with Swift UI

    Unsolved
    1
    0 Votes
    1 Posts
    626 Views
    No one has replied
  • How to Reduce SQLite Database File Size Using Qt

    2
    0 Votes
    2 Posts
    409 Views
    jsulmJ
    @gohj Take a look at this: https://www.sqlite.org/lang_vacuum.html Also you should mention what database you're using (I guess SQLite).
  • QuickControls 2 TextField maximumLength not working on Android

    Solved
    4
    0 Votes
    4 Posts
    504 Views
    SGaistS
    You're welcome ! Since you have it working now, please mark the thread as solved using the "Topic Tools" button so that other forum users may know a solution has been found :)
  • How to get coverArtImage metadata from a mp3?

    Unsolved
    5
    0 Votes
    5 Posts
    940 Views
    SGaistS
    You can use a QQuickImageProvider
  • OpenSSL for Android support

    Solved
    23
    0 Votes
    23 Posts
    12k Views
    1
    This one worked like a charm, took 10 min overall. https://github.com/ekke/android-openssl-qt
  • Armbian OS NanoPC t4

    Unsolved
    1
    0 Votes
    1 Posts
    633 Views
    No one has replied
  • Cross-compiling Qt Apps for Raspberry Pi with X11 support

    Unsolved
    2
    0 Votes
    2 Posts
    408 Views
    sierdzioS
    @rrd0 said in Cross-compiling Qt Apps for Raspberry Pi with X11 support: So, I'd like to know what steps I need to add to that tutorial, or what dependencies I need to install, to be able to run my cross-compiled applications on raspberry pi with X11 Nothing, it will work on X11 (but may lack GPU acceleration) because xcb plugin is compiled by default, in addition to eglfs.
  • Unable to play audio from Qt

    Unsolved
    3
    0 Votes
    3 Posts
    397 Views
    A
    @jigarp Is Qmediaplayer play other format of audio example .mp3 on your system?
  • Screen rotation 90° in framebuffer mode

    Unsolved
    2
    0 Votes
    2 Posts
    557 Views
    SGaistS
    Hi, What version of Qt are you using ?
  • This topic is deleted!

    Solved
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • This topic is deleted!

    Solved
    2
    -1 Votes
    2 Posts
    61 Views
  • Qt-Wayland: Touch input behaving wonky.

    Solved wayland touchscreen tslib
    2
    0 Votes
    2 Posts
    2k Views
    J
    I figured out my issue. I set the following environment variable: QT_QPA_EGLFS_DISABLE_INPUT=1 Of course, the cursor dissapears, but when pressing around my Gui running on the Compositor I'm not noticing any buttons being pressed except when I press in them, so that's definitely preferred to a wonky cursor!
  • How to make custom style for VirtualKeyboard

    Solved
    7
    0 Votes
    7 Posts
    7k Views
    S
    @jsulm sorry, i missed to add qrc to the layout path at release mode qputenv("QT_VIRTUALKEYBOARD_LAYOUT_PATH", ":/layouts"); after adding "qrc:/layouts" , it has worked. Thanks for reply @jsulm
  • An unusual effect of a component over another in a QML mobile app

    Unsolved
    12
    0 Votes
    12 Posts
    1k Views
    tomyT
    Hallo @J.Hilk, a lot of debug related stuff is still copied into the apk, as long as it's not signed. In fact so much, that one of my apps is nearly halved in size after signing. A reasonable conclusion would be, that there can very well be a difference in the apk & performance between signed and unsigned. That is good info, thanks. Almost always the apps I finally create APK files for them have both the saame size in Release and Debug mode. That could be a reason for that. I also think it's the same for both Qt and QML apps (not only QML), right? I doubt, however, if not-signing an app will have influence on it in Release, i.e., all the garbage added to the not-signed app when building is done for the Debug mode. Hence, we finally have two option, signing the app and enjoy using it, or not signing and enjoying it in Release. One more thing, from all experience I have through testing several apps I've been tackling, both modes have had the same behavior when testing. Also, the two problems with the app are worked out now this way: Using onFrameSwapped instead of Timer to solve the problem with he ball's movement speed when moving the rackets Obtaining the velocity of the racket for each movement of it and applying it when hitting the ball to set the speed of the ball then. :)
  • Android splash screen logo gets pushed down

    Unsolved
    3
    0 Votes
    3 Posts
    742 Views
    P
    It's not caused by Qt. Qt displays the splashscreen correctly, respecting insets (like statusbar) but you are most probably using "android:windowBackground" in the theme and this just doesn't respect any insets. API 26+ has adressed that issue by introducing "android:windowSplashscreenContent".
  • How to get a bigger stacktrace

    Unsolved
    3
    0 Votes
    3 Posts
    471 Views
    M
    For testing purposes, I trigger a segfault myself. When I run this code on Linux I get a complete stacktrace When I run this on Android (debug and release mode) I just get one frame in the "./adb logcat -b crash" output Any ideas?
  • How to set local notification in android on particular time on every week?

    Unsolved
    9
    0 Votes
    9 Posts
    2k Views
    Pablo J. RoginaP
    @divaindie glad you found it! Is your issue solved? if so please don't forget to mark your post as such. Thanks
  • How to use Qmediaplaylist to add all the audio files from a directory?

    Solved
    11
    0 Votes
    11 Posts
    2k Views
    R
    @SGaist hi, yes it is. it was an editor issue. A space helped it. Thanks for edit.