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
  • 0 Votes
    3 Posts
    728 Views
    L
    Hello, I also encountered this situation. Have you found a solution?
  • 0 Votes
    2 Posts
    223 Views
    No one has replied
  • QtCreator can't find headers (stm15 target)

    Unsolved
    2
    0 Votes
    2 Posts
    235 Views
    D
    As an update, I installed qtcreator from the ubuntu repo (13.0.2) and it works much better. Are there config files somewhere I can diff against the previous install to better understand the original problem?
  • Phone contacts header label scrolling in/out

    Unsolved
    2
    0 Votes
    2 Posts
    248 Views
    No one has replied
  • How to stop application from crashing at runtime

    Solved
    7
    0 Votes
    7 Posts
    1k Views
    ?
    @Felix-van-de-Donk said in How to stop application from crashing at runtime: So what did you do to solve it? Removed QT beta version (6.8.0-beta 3) Removed old kits Removed Android Emulator Removed Android SDKs I installed as I'll be deploying to Android device from now (Emulator is too unreliable) Installed QT stable version (6.7.2) Ignored red crybaby messages from W ziparchive W qt.multimedia W Qt A11Y W libEGL W QtAudioDeviceManager E BufferQueueProducer Since I'm not sure how to stop them from appearing and everything seems to be working how it should
  • meta qt6 lts-6.5 can not fetch

    Unsolved
    2
    0 Votes
    2 Posts
    454 Views
    SGaistS
    Hi, The URL looks like it's in an private area. Shouldn't it rather be https://mirrors.kernel.org/yocto-sources/git2/code.qt.io.qt.qtdeclarative.git/ ?
  • yocto qt6 -b lts-6.5.6

    Unsolved
    2
    0 Votes
    2 Posts
    237 Views
    No one has replied
  • Qt6.7 Android: On app start crash with missing Java function

    Solved android mac os linux
    5
    0 Votes
    5 Posts
    3k Views
    P
    I had the same problem upgrading from 6.6 to 6.7, I resolved it by using the correct NDK (26.1.10909125), see https://doc.qt.io/qt-6/android-getting-started.html
  • Is the Bluetooth of QT6.3.1 related to the iOS version

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

    Unsolved
    1
    0 Votes
    1 Posts
    17 Views
    No one has replied
  • How to get battery rate on android devices

    Unsolved
    2
    0 Votes
    2 Posts
    305 Views
    No one has replied
  • QT5 on Android 14

    Unsolved
    5
    0 Votes
    5 Posts
    983 Views
    R
    Hello. I actually don't have a physical device with Android 14 to debug. So I tried with the Google emulator (Google Play Games Developer Emulator) where the error occurs when running the APP. But I tested it with a friend's cell phone with Android 14 and the APP worked. The APP opens, but an error occurs in the APP when trying to connect to the Firebird database. I'm using a lib "libfbclient.so" provided by Firebird for connection. I don't know if this lib could be the problem. Fact that it works on Android 13. But on Android 14, the connection to the database does not work. Do you recommend any emulator for Android 14? The existing emulators in Android Studio API level 34 do not work on my computer. And the Google emulator that I downloaded causes an error in the APP, but not on the physical device. So I believe that the emulator has a problem.
  • QT6 request permittion (notifications in my case)?

    Unsolved
    2
    0 Votes
    2 Posts
    418 Views
    S
    OK, so for Android its kinda simple, just put to main.cpp: #include <QtCore/qjniobject.h> #include <QtCore/qcoreapplication.h> #include <QtCore/private/qandroidextras_p.h> int main(int argc, char *argv[]) { ... #ifdef __ANDROID__ if (QNativeInterface::QAndroidApplication::sdkVersion() >= __ANDROID_API_T__) { const auto notificationPermission = "android.permission.POST_NOTIFICATIONS"; auto requestResult = QtAndroidPrivate::requestPermission(notificationPermission); //if (requestResult.result() != QtAndroidPrivate::Authorized) { qWarning() << "Failed to acquire permission to post notifications (required for Android 13+)"; } } #endif ... } but how to I handle same in iOS?
  • lcurl and JSON issue

    Solved
    5
    0 Votes
    5 Posts
    532 Views
    Christian EhrlicherC
    @piervalli said in lcurl and JSON issue: I use lcurl instead of QNAM, because I am sure that there is a single post (request to server) instead with QNAM I doubt this...
  • Got compile error when build Qt 6.7.2 for Android

    Unsolved
    3
    0 Votes
    3 Posts
    637 Views
    ytexasY
    @mvuori Thanks for reply, I have tried downgraded NDK version, from 26.x to 22.x, event the 26.1.10909125 which is the same version of NDK used in the document. All of them would got compile error (may have different error messages like missing wchar.h ).
  • Could not get androiddeployqt to package/copy my subproject qml plugins / modules

    Unsolved
    4
    1 Votes
    4 Posts
    526 Views
    KH-219DesignK
    This next part is a tangent, but I mention it because you might run into this next: You may also need to use a kind of "dummy imports qml" file later, to make sure that the deployed app contains all the Qt framework QML that you expect. Example: https://github.com/219-design/qt-qml-project-template-with-ci/blob/a85e7f49a127eab/src/app/imports.qml
  • 0 Votes
    13 Posts
    2k Views
    SGaistS
    That was a nasty one. Glad you found out and thanks for sharing !
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • How to set app icon?

    Unsolved
    4
    0 Votes
    4 Posts
    829 Views
    SGaistS
    @Gilberrt hi, it's literally the first platform explained in the link posted by the OP. Qt 5 and Qt 6.
  • remove top and bottom zone in QComboBox's QListView in android (Qt 6.4.2)

    Unsolved
    2
    0 Votes
    2 Posts
    296 Views
    J
    Hello, To remove the small lines with triangles (scroll indicators) above and below the scroll bar in your QComboBox’s QListView, you can customize the style of the scroll bar using a stylesheet. Here’s how you can do it: Set the Scroll Bar Policy: Ensure that the scroll bar is set to always show or hide as needed. Customize the Scroll Bar Style: Use a stylesheet to hide the scroll indicators. Hope that helps.