Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.0k Topics 62.1k Posts
QtWS25 Last Chance
  • Camera on Android how to adjust the brightness ?

    Unsolved
    3
    0 Votes
    3 Posts
    24 Views
    L

    @jsulm i try to setExposureCompensation seem not any changed. I try to console supportedFeatures is 32 in hex is 0x20 that means it is only support FocusDistance. Qt's camera also supports too few features on Android compared to Java.

  • Keeping the UI alive

    Unsolved
    8
    0 Votes
    8 Posts
    299 Views
    D

    Thanks @jsulm I'll give it a go immediately!

  • how to open file ? qt for ios?

    Unsolved
    5
    0 Votes
    5 Posts
    73 Views
    jsulmJ

    @kkgg said in how to open file ? qt for ios?:

    I don't need to access the contents of the album

    You're trying to open a file and for this your app needs permissions.
    Also consider what @J-Hilk wrote.

  • Building for iOS: fatal error: 'fp.h' file not found

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

    Unsolved
    0
    0 Votes
    0 Posts
    30 Views
    No one has replied
  • Boot2Qt Waveshare Display is not Working

    Unsolved
    3
    0 Votes
    3 Posts
    367 Views
    M

    hey @Jacob-Chafin !

    Did you ever make it work ?

  • 0 Votes
    2 Posts
    65 Views
    D

    Up! just need 4 more testers ;)

  • Compiling Qt6 with wayland support

    Unsolved
    2
    0 Votes
    2 Posts
    135 Views
    Q

    Any one know where this file can be found?

  • Is there infrared port (IrDA) support for Android apps?

    Solved
    3
    0 Votes
    3 Posts
    98 Views
    G

    @SGaist Thank you, your answer helped me!

  • 0 Votes
    4 Posts
    202 Views
    M

    Interesting, I received complaints from some users that this happens with and Android app I developed. They experience a grey screen on Android 15 (Qt 6.8.3) on Pixel phones. I have not experienced this myself on Android 14 on a Samsung Galaxy S22.

  • Unable to debug the Android Application Waiting for Debugger

    Unsolved
    15
    0 Votes
    15 Posts
    3k Views
    U

    Qt is very sensitive to the environment, and releases often contain bugs.
    The main conditions for successful assembly and debugging in my case:

    Android build-tool version: should be the latest, i.e. the maximum with which the build is successful. If the build is not successful, then the version should be downgraded. Android build platform SDK: should be the latest, i.e. the maximum, with which the build is successful. If the build is not successful, then you should downgrade the version (https://doc.qt.io/qt-6/android.html + select your Qt release on the page). By the way, on 04/02/2025, the application using API 35 is not built and you should select the previous API version (34). Android NDK must be exactly the one specified in the documentation for the Qt version used (https://doc.qt.io/qt-6/android.html + select your Qt release on the page).

    For example, for version Qt 6.8.3 and Qt creator version 16.0.0, successful building and debugging were provided by the following set of components:
    -build-tool version: 35.0.1
    -build platform SDK: 34 or 33
    -android NDK: 26.1.10909125
    Снимок.PNG
    Снимок1.PNG

  • 0 Votes
    1 Posts
    41 Views
    No one has replied
  • library "libssl.so.1.1" not found

    Solved
    20
    1 Votes
    20 Posts
    4k Views
    Z

    @Shrinidhi-Upadhyaya
    hello,I followed the same method to test, and the test has been successful, but it still reminds me that some libraries are missing,why is this?
    library "libcrypto.so.1.1" not found
    library "libcrypto" not found
    library "crypto.so.1.1" not found
    library "crypto" not found
    library "libmaliinstr.so" not found
    library "libresolv.so" not found
    library "libresolv" not found
    : library "resolv.so" not found
    library "resolv" not found

  • 0 Votes
    5 Posts
    164 Views
    SGaistS

    That example does not use Python, it's a C++ example.

    That said, why not use the C++ SDK for Firestore ?

  • Using Apple RoomPlan Framework within Qt

    Unsolved
    3
    0 Votes
    3 Posts
    146 Views
    S

    You are mentioning "various platforms". If it is not just macOS and iOS/ipadOS it is not portable to choose any Apple Framework. And since Qt is mostly about portability (at least on desktop and mobile) it will only/mostly have features that are common on all these platforms. I guess that most people that intend to use Apple's RoomPlan Framework are using Apple frameworks exclusively (including UI).

    The easiest way to interface with Apple frameworks used to be Objective-C++. I am not sure how much that has changed with the introduction of Swift. I believe they share the same underlying runtime and so you can still use Objective-C++.

  • run application on startup (raspberry PI)

    10
    0 Votes
    10 Posts
    11k Views
    M

    The documentation to launch a custom app on startup is now here

    https://doc.qt.io/Boot2Qt/b2qt-customization.html#booting-to-a-custom-application

  • 0 Votes
    6 Posts
    199 Views
    Z

    So here is my findings. Maybe someone can give me a hint
    Applying any styleSheet on Android shifts Z-order of QMessageBox which makes its buttons unclickable

    Here what is going on:

    //setting styleSheet to any widget breaks interactivity on Android setStyleSheet("QPushButton { }"); QMessageBox::information(this,"Check the message", "Is it clickable?" ); //it is not clickable on Android

    But if we manually set Z-order to the message this message becomes clickable. But further ones ARE NOT

    setStyleSheet("QPushButton { }"); //applying styleSheet QMessageBox msgBox; msgBox.setText("StyleSheet is set. Z-order fixed"); //set stayOnTop flag and it becomes clickable msgBox.setWindowFlags(Qt::Dialog | Qt::WindowStaysOnTopHint); msgBox.exec(); //Next message is unclickable QMessageBox::information(this,"Check next message", "Is it clickable?" ); //No it is not clickable

    How to restore correct Z-order for all of my windows and messages after apllying a styleSheet in Android?

  • how to use virtual keyboard for stm32mp157d-dk1

    Unsolved
    2
    0 Votes
    2 Posts
    106 Views
    jsulmJ

    @sharan16k said in how to use virtual keyboard for stm32mp157d-dk1:

    when i try toimplement as given in the below page

    So, does it work or not?

  • Android Build in QT Creator will not install on phone

    Solved
    4
    0 Votes
    4 Posts
    100 Views
    JonBJ

    @scottm1982 That's good. Then to help other readers you can Mark as Correct your own final post.