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
  • Function fopen and Android assets

    Unsolved
    1
    0 Votes
    1 Posts
    332 Views
    No one has replied
  • Boot2qt imx8

    Unsolved
    2
    0 Votes
    2 Posts
    361 Views
    SGaistS
    Hi and welcome to devnet, Boot2Qt being a commercial offering, you should contact the Qt Company directly. As a guess, check the code of that application and search for a timer somewhere that triggers the refreshing.
  • This topic is deleted!

    Unsolved
    43
    0 Votes
    43 Posts
    428 Views
  • Creating Android App in Qt 5.14.2 on Win10

    Solved
    4
    0 Votes
    4 Posts
    909 Views
    MucipM
    Hi, The answer is in this file. I realized that this is temlate file. C:\Qt\5.14.2\android\src\3rdparty\gradle\gradle\wrapper\gradle-wrapper.properties When you change this file it always come 6.7 :) Regards, Mucip:)
  • Sometimes Stack Pop is not working properly.

    Solved
    10
    0 Votes
    10 Posts
    1k Views
    T
    @J-Hilk cool i will try it. thanks
  • CMake with cross compile for RaspberryPi4

    Unsolved
    2
    0 Votes
    2 Posts
    261 Views
    Pablo J. RoginaP
    @Creatorczyk you may want to check some of these posts regarding using CMake and Qt while developing apps for embedded devices.
  • Raspberry Pi 4 cross compile

    Solved
    7
    0 Votes
    7 Posts
    2k Views
    C
    @SGaist @jsulm After updating the compiler, it worked. Thanks!!!!
  • Using Android static library in Qt Project. How?

    Unsolved
    4
    0 Votes
    4 Posts
    555 Views
    jsulmJ
    @bogong Just add it to your pro file
  • Build BOOST like *.so (shared object) for Android. How?

    Unsolved
    1
    0 Votes
    1 Posts
    292 Views
    No one has replied
  • what is meaning of below written statment?

    Solved
    8
    0 Votes
    8 Posts
    735 Views
    jsulmJ
    @Qt-embedded-developer Please read https://doc.qt.io/qt-5/thread-basics.html it answers your question.
  • RaspberryPi touchscreen does not react to touch in Qt app

    Unsolved
    4
    1 Votes
    4 Posts
    910 Views
    M
    Hi all. I have the same problem with Rpi 3b, Qt 5.8.0 and ELGFS, compiled from fresh. I get qt.qpa.input: evdevtouch: /dev/input/event0: min X: 0 max X: 0 and if I touch on the screen nothing happens. evtest works fine
  • Connect to Nordic NRF52 Development Kit

    Unsolved
    7
    0 Votes
    7 Posts
    2k Views
    A
    @HTWAMD Configuring the pins on Microcontrollers can take a lot of time - so my team & I hacked together a small tool of our own for Nordic MCUs. Initialise your nRF52832 based projects much faster with Vicara’s Code Generator!  A simple GUI to configure pins, peripherals and project files without writing a single line of code. We currently support GPIO, GPIOTE, PWM, UART, SPI & TWIM with Segger Embedded Studio project file generation. More peripherals and boards to be supported soon.  Please do try it out and share your feedback! The website link is: https://vicara.co/nrf52-code-generator
  • QT QCamera Vertically Flip Image

    Unsolved
    2
    0 Votes
    2 Posts
    567 Views
    D
    this worked for me: format.setScanLineDirection(QVideoSurfaceFormat::BottomToTop);
  • Examples of very tight user experience with QGraphicsView on iOS?

    Unsolved
    1
    0 Votes
    1 Posts
    148 Views
    No one has replied
  • Trouble keeping an application running in the background

    Unsolved ndk android
    1
    0 Votes
    1 Posts
    376 Views
    No one has replied
  • USB Device not found

    Unsolved
    1
    0 Votes
    1 Posts
    331 Views
    No one has replied
  • How to store signal slot data in side per 2 msec running thread?

    Solved
    2
    0 Votes
    2 Posts
    230 Views
    jsulmJ
    @Qt-embedded-developer said in How to store signal slot data in side per 2 msec running thread?: but how to store that data best way i want to know ? Not sure what the problem is with that. You should explain what you want to do better, as it is not really clear. Do you want to store images and videos? If so store them in files. Path and id can be stored in simple variables or lists (depends on how many you want to store).
  • mapboxgl dont work

    Unsolved
    3
    0 Votes
    3 Posts
    393 Views
    A
    thank you for your answer @Pablo-J-Rogina, but does mapbox support the implementation of mapboxgl from Qt to Android? because when I try to apply Mapboxgl to Android, the app crashes or blank screen. this OutPut Log if I deploy my app to android: [image: 7cc50992-3f28-4756-a9a3-c87e78c75705.png]
  • 0 Votes
    4 Posts
    4k Views
    O
    First of all, I want to make clear the info about supported android API versions. As stated here: https://doc.qt.io/qt-5.14/android.html, Qt 5.14 (and 5.15), support only API 21 or later. But Qt 5.12 and 5.9 support API 16+ (https://doc.qt.io/qt-5.12/android.html, https://doc.qt.io/qt-5.9/android-support.html). As I understand, you don't really need to change android SDK version in build options to support the lower API, as minimum possible API automaticly set to minimum supported by your version of Qt. So technically if you just compile your code in Qt 5.12 without changes in default build options (it is "SDK: android-30" now), it gonna support API 16 or later. Or at least it works fine for me with device emulators (API 16) and a real tablet (API 17). The same goes for Qt 5.15 (API 21+), checked it for real device with API 23. Here explained some important differences between supported android API version of your app and required android SDK version for Qt, which probably can be confusing (smth like API != SDK and usually API < SDK): https://wiki.qt.io/Android => only section "Manual Installation". It described for old Qt versions, and I suppose similar principles work for newer. Thats why you get build errors in case if "SDK: android-23", but option "SDK: android-28" works on API 23 (just example). And I'm new in Qt too, so it would be nice if anyone correct me if there are errors.
  • 1 Votes
    3 Posts
    3k Views
    advmA
    I found solution, I added this in CMakeLists.txt and it worked in my case: set(Qt5_DIR "C:\\Qt\\5.13.1\\Android_static\\lib\\cmake\\Qt5\\") set(Qt5Core_DIR "C:\\Qt\\5.13.1\\Android_static\\lib\\cmake\\Qt5Core\\") find_package(Qt5 REQUIRED COMPONENTS Core) include_directories("C:\\Qt\\5.13.1\\Android_static\\include") include_directories("C:\\Qt\\5.13.1\\Android_static\\include\\QtCore") add_library(Qt5Core STATIC IMPORTED) set_target_properties(Qt5Core PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/libs/${ANDROID_ABI}/libQt5Core.a) target_link_libraries( # Specifies the target library. MyLib Qt5Core )