Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.1k Topics 62.2k Posts
QtWS25 Last Chance
  • Squeleton for a mobile application

    Unsolved
    2
    0 Votes
    2 Posts
    151 Views
    sierdzioS
    Not QML so with Qt widgets? Just start a new Qt Widgets project in Qt creator, it will work on mobiles too. For pages you can use QStackWidget.
  • Start QCoreApplication in a native iOS App

    Solved
    2
    0 Votes
    2 Posts
    159 Views
    ad1170A
    Meanwhile, i have found the reason for QCoreApplication::instance() == 0. I have to wait some time after starting the thread that calls QCoreApplication's exec(). (void) QtConcurrent::run(&runQCoreApplication); do { this_thread::sleep_for(std::chrono::milliseconds(10)); } while(!QCoreApplication::instance() && (++to < 300)); assert(QCoreApplication::instance());
  • Qt depended library in native iOS app (main event loop question)

    Unsolved
    2
    0 Votes
    2 Posts
    378 Views
    ad1170A
    Hi, do you have found a solution for this issue? I have the same problem an try to start a QCoreApplication in an other thread. On Android, it works even if the QCoreApplication does not run on the main thread. THX
  • Qt 5.12.3 MQTT

    Solved
    4
    0 Votes
    4 Posts
    513 Views
    SGaistS
    You don't need Qt for Automation. It just says that if you have that licence, then you don't need to buy QtMqtt from the Market Place separately. As for the pre-built nature, sorry I do not know. Note that building that module is not that hard. You open it in Qt Creator, build it, and you can even add a custom build step that calls make install.
  • Qt app launched at startup of a Jetson Nano

    Solved
    4
    0 Votes
    4 Posts
    831 Views
    S
    Ok I changed the way of doing that : I created a *.desktop file in .config/autostart [Desktop Entry] Path=/home/jetson/Startup/Camera_quick Exec=/bin/bash /home/jetson/Startup/Camera_quick/run.sh Type=Application and the run.sh file is : #!/bin/bash export LD_LIBRARY_PATH=/usr/local/Qt-5.15.2/lib/ /home/jetson/Startup/Camera_quick/Camera_quick And that works ! Thanks
  • Run qml with webgl on beaglebone black

    Unsolved
    1
    0 Votes
    1 Posts
    177 Views
    No one has replied
  • Grid type layout for image file

    Unsolved
    5
    0 Votes
    5 Posts
    604 Views
    SGaistS
    Hi and welcome to devnet, Looks like you could be interested by QFileSystemModel coupled to a QListView
  • 0 Votes
    3 Posts
    760 Views
    A
    @Dmitriano How did you update the build.gradle
  • Extending QIOSApplicationDelegate with category on ios

    Unsolved
    3
    0 Votes
    3 Posts
    307 Views
    S
    I'm getting these following warnings while compiling: warning: 'UIResponder' may not respond to 'application:openURL:options:' return [super application:pApplication openURL:pURL options:pOptions]; ld: warning: method '-application:openURL:options:' in category from /path to file/ overrides method from class in plugins/platforms/libqios_debug.a(qiosapplicationdelegate.mm.o) Are these Okay?
  • 0 Votes
    6 Posts
    990 Views
    R
    @ad1170 hi! i'm still using Qt5. But yes, you need to run the scheduler in the main loop of your qt application in order to solve it.
  • Android Build fails can't ger support-v4/maven-metadata.xml

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    V
    First of all I believe QT is GREAT. It allows one to accomplish GREAT work, even though we used to have bumpy rides with it over the years (bugs in framework, Creator hitting the fan). One thing is for sure though. Which made us loose lots of time. - the need for additional gluing between elements always used to be very imminent. I know it can now autonomously download Android SDK and stuff but still we don't even EXPECT that...it never was like ..one common language, with QML portable among many platforms, without the need to be using additional native Mac OS X deployment tools and stuff. Was it? But you can't really attach to a running process on Android and stuff... half of UI options around these lines do no really work...it even says 'non implemented' once you click on it, in log files. Once you get everything setup and running for the project. It's fine. Until sh** happens, and it WILL, with some of the internal files and you have no idea how to approach it. Suddenly it turns out some files can't be opened.. and suddenly you need to be well familiar with native Android, Gradle, Maven, everything. Long ago we began to employ virtualization to offset for that. Turned out to be the best choice. Anyhow, not to cry a river: in file gradle-wrapper.properties changed version to: https://services.gradle.org/distributions/gradle-6.7-bin.zip no idea if that's the right one. It works. Good luck to everyone.
  • Next set of Android 12 features

    Solved android 12 android
    1
    0 Votes
    1 Posts
    282 Views
    No one has replied
  • [Android] WebView doesn't open google play

    Unsolved
    1
    0 Votes
    1 Posts
    901 Views
    No one has replied
  • installing Qbluetooth module

    qbluetooth qtmodule ubuntu 16.04 raspberry pi 3
    9
    0 Votes
    9 Posts
    4k Views
    jsulmJ
    @CodeinSipper said in installing Qbluetooth module: how to install it on windows? Using Qt Maintenance Tool from your Qt set-up.
  • Linking target libraries from different tree branch

    Unsolved andoid x86 cmake qt6
    2
    0 Votes
    2 Posts
    334 Views
    A
    A hack that I had to do for this to work is to manually copy the so file. if(ANDROID) add_custom_command(TARGET cook-ui-modular-qt POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_BINARY_DIR}/App/ConnectedSocket/libConnectedSocket_${ANDROID_ABI}.so ${CMAKE_BINARY_DIR}/App/UserInterface/android-build/libs/${ANDROID_ABI}/libConnectedSocket_${ANDROID_ABI}.so ) endif() This is obviously not the right way to do it. But I don't know how to do it the right way
  • Check if running in Android and emulator

    Unsolved
    1
    0 Votes
    1 Posts
    174 Views
    No one has replied
  • Unable to debug device

    Unsolved android debug debugging armv7
    1
    0 Votes
    1 Posts
    485 Views
    No one has replied
  • How can I modify Qt source files?

    Solved
    3
    0 Votes
    3 Posts
    342 Views
    ?
    @raven-worx As I guessed. thank you for the information
  • Qt-6.2.0: You need to set QT_HOST_PATH to cross compile Qt.

    Unsolved
    8
    0 Votes
    8 Posts
    8k Views
    ad1170A
    Just if anyone interested in. I have used the configure option -qt-host-path /home/[user]/Qt/6.2.2/gcc_64 when building e.g. qt for android on ubuntu.
  • How to get audio data of QTextToSpeech?

    Unsolved
    3
    0 Votes
    3 Posts
    235 Views
    SeeLookS
    Thanks @SGaist That was I thought, no other way than make hands dirty with JNI.