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
  • QJniObject cannot get the android safe cutout areas

    Unsolved
    1
    0 Votes
    1 Posts
    8 Views
    No one has replied
  • Send SMS in QT6

    Unsolved
    3
    0 Votes
    3 Posts
    349 Views
    M
    Ran into a similar JNI issue moving from QT5 to QT6—the class reference can’t be null, so the static method call fails. Make sure your Java class is properly loaded before calling it. For sending multiple messages in tests, I used bulk sms APIs and they worked flawlessly, which helped me confirm my C++/JNI logic was the only problem.
  • Android 16kb page size and plugins

    Solved
    11
    0 Votes
    11 Posts
    241 Views
    F
    @mrdebug Yes, I changed SOURCE_VALUE=7.1.1 as indicated above, ffmpeg-7.1.1 was downloaded
  • QSQLITE can't access DB in Android assets as documented

    Unsolved qsqlite android sql assets
    3
    0 Votes
    3 Posts
    30 Views
    B
    [Question withdrawn: The VFS feature is new in Qt 6.7, so my code just needs to upgrade from 6.5.3.]
  • How to setup Qt Creator for android 16kb pages ?

    Unsolved
    10
    1 Votes
    10 Posts
    587 Views
    C
    Same thing with the 6.10
  • JDK 11 SDK Manager LinkageError SdkManagerCli

    Unsolved
    4
    0 Votes
    4 Posts
    5k Views
    I
    @Stamat Sorry, but could you use qt5 with jdk 17? I keep getting: java.lang.NoClassDefFoundError: Could not initialize class org.codehaus.groovy.vmplugin.v7.Java7 But with jdk 11 i can't even list packages on the sdkmanager
  • Wrong qmake ABI in qt6 for buildroot

    Unsolved
    1
    0 Votes
    1 Posts
    21 Views
    No one has replied
  • Retrieving Unix id of message sender in D-Bus Adaptors

    Unsolved
    2
    0 Votes
    2 Posts
    43 Views
    SGaistS
    Hi, How would you get it with the dbus library ?
  • Xcode26 any experiences / problems ?

    Unsolved ios xcode
    6
    1 Votes
    6 Posts
    230 Views
    ekkescornerE
    @ziller said in Xcode26 any experiences / problems ?: compiling against the latest SDK (which you need to do to support the newest APIs there). thx verifying. matching my expectations. @ziller said in Xcode26 any experiences / problems ?: With CMake set the CMAKE_OSX_DEPLOYMENT_TARGET CMake variable if I understood it right, without setting this variable, Qt is using iOS 16 as minimum if building with Xcode 16.4 and iOS 18 SDK on Qt 6.9.x from QtCreator 17.x My question now: when updating Xcode to Xcode 26.x and iOS SDK 26 will this work out of the box for building Qt 6.9 / 6.10 projects from QtC 17.x and iPhones running iOS 18 or iOS 26 ? ATM I'm still on Xcode 16.4 and iPhones/iPads on iOS 18.7.1
  • 0 Votes
    19 Posts
    1k Views
    ekkescornerE
    @garycho said in Android 15 (API 35) / Qt 6.9.1: SafeArea=0 at startup in plain Window; content under notch/nav until TextField focus: SafeArea margin is set correctly on start great to hear that it also works for you :)
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    7 Views
    No one has replied
  • Android can't find QtQuick.Effects

    Unsolved
    2
    0 Votes
    2 Posts
    230 Views
    C
    you need link Qt6::QuickEffectsPrivate libraries.
  • Qt Quick SafeArea not working correctly on Android

    Unsolved qt 6.9.1 android safearea quick2
    4
    0 Votes
    4 Posts
    188 Views
    ekkescornerE
    6.9.3 will come out next week https://wiki.qt.io/Qt_6.9_Release
  • Android 15 new page size memory 16KB

    Unsolved
    4
    0 Votes
    4 Posts
    1k Views
    V
    See also https://www.qt.io/blog/android-15-and-16-support
  • [SOLVED] Update on android 15 new page size memory 16KB

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    V
    See also https://www.qt.io/blog/android-15-and-16-support
  • how to enable 16KB page size on c++ android app using qmake

    Unsolved
    5
    0 Votes
    5 Posts
    1k Views
    V
    See also https://www.qt.io/blog/android-15-and-16-support
  • Screen mirroring

    Unsolved
    8
    0 Votes
    8 Posts
    389 Views
    S
    Hi @Anand-Sethu , As mentioned above, the upcoming "content projection" feature in Qt for Android Automotive "streams" the content to a remote consumer, but it's a video stream. The purpose of the feature is not exactly what you are looking for, as injecting user touch input from your Yokto system back to Android is a different story that should be evaluated separately (by using AccessibilityService to inject touch input + Qt Content Projection).
  • Qt for Android and 16 KB page size: official roadmap and temporary solutions?

    Unsolved
    5
    0 Votes
    5 Posts
    543 Views
    ekkescornerE
    @Aldebaran there was some discussion at https://discord.com/channels/457523061650882570/1017293621063602186/1412677580439687248 also see https://bugreports.qt.io/browse/QTBUG-131514 Fix Version/s: 6.5.10, 6.8.6, 6.9.3, 6.10.0, 6.11.0 FF if you're using OpenSSL, please watch https://github.com/KDAB/android_openssl/issues/68 ekke
  • Custom LVDS Cable

    Unsolved
    1
    0 Votes
    1 Posts
    125 Views
    No one has replied
  • Zero-copy rendering with Qt FBO and dmabuf EGLImage – Shared context issue

    Solved
    2
    1 Votes
    2 Posts
    179 Views
    SweerItTerS
    makeQCurrent(); eglDisplay_ = eglGetCurrentDisplay(); eglCtx_ = eglGetCurrentContext(); if (eglDisplay_ == EGL_NO_DISPLAY || eglCtx_ == EGL_NO_CONTEXT) { fprintf(stderr, "[Core] Cannot get native EGL resources form qt.\n"); } doneQCurrent(); ———————————————— 版权声明:本文为CSDN博主「SweerItTer」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。 原文链接:https://blog.csdn.net/qq_40087136/article/details/151912946