Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.1k Topics 62.6k Posts
  • Android (and iOS) Local Storage Disappearing

    Unsolved
    6
    1 Votes
    6 Posts
    2k Views
    G
    I'm using qsettings as ini files in that folder. Moreover I'm also storing sqlite databases and json configurations files. All of them disappeared after the update.
  • 0 Votes
    1 Posts
    197 Views
    No one has replied
  • Android: how to use local libraries

    Unsolved android c++ librarypath
    10
    0 Votes
    10 Posts
    2k Views
    jsulmJ
    @kromignon Since Android is based on Linux you could put the libs in /usr/lib and see whether it works.
  • Call ffmepg binary on android(x86 emulator)

    Unsolved
    6
    0 Votes
    6 Posts
    622 Views
    SGaistS
    Androïd is a Linux based OS.
  • Printing on Thermal printer from Boot2Qt image

    Unsolved
    6
    0 Votes
    6 Posts
    647 Views
    SGaistS
    You might be able to translate the python library in something that is suitable in C/C++.
  • Why does my application become 25 times bigger!

    Unsolved
    10
    0 Votes
    10 Posts
    625 Views
    JonBJ
    @LyzV Debug builds can be a bit bigger than Release ones ;-) You may still be a bit optimistic if you expect to "port your application from non-Qt to Qt" and not see any difference in final size.
  • QT Creator - Select Android Device - device connected over TCPIP is missing

    Unsolved
    4
    1 Votes
    4 Posts
    2k Views
    T
    I’m running into the same issue. I created a bug report for it, feel free to follow or vote on it: https://bugreports.qt.io/browse/QTCREATORBUG-22765
  • Camera focus not work

    Unsolved
    12
    0 Votes
    12 Posts
    947 Views
    NickVN
    @jsulm Yes. My application is very old, but i need new Qt now. I can not change the whole application in order to use api calls right now. I know that this architecture is very painful and problematic but this is that i have for now.
  • How to open a link in a new window in WebView

    Solved
    8
    0 Votes
    8 Posts
    996 Views
    jsulmJ
    @Mikeeeeee HTTPS, I guess it is an issue with OpenSSL libs
  • RaspberryPi2EGLFS

    Locked Unsolved
    2
    0 Votes
    2 Posts
    256 Views
    jsulmJ
    @MihaiJunior Please don't post same question several times! https://forum.qt.io/topic/105313/raspberrypi2eglfs
  • Real time QtCharts block the UI after few minutes

    Unsolved qtchart qwt stuck ui design realtime
    1
    0 Votes
    1 Posts
    470 Views
    No one has replied
  • Completion notification after completion of write the data in file through UART

    Unsolved
    10
    0 Votes
    10 Posts
    813 Views
    jsulmJ
    @Mohit-Tripathi said in Completion notification after completion of write the data in file through UART: How can I do this? Can you please tell me? https://doc.qt.io/qt-5/signalsandslots.html
  • Open a local PDF file from QT app for iOS

    Unsolved
    4
    0 Votes
    4 Posts
    1k Views
    S
    @Mike-V AppStudio now supports DocumentDialog which lets you open pdfs on iOS.
  • App's path for external storage in Qt ?

    Unsolved
    4
    0 Votes
    4 Posts
    1k Views
    Z
    @mrjj I already used the following code : dir_model=new QFileSystemModel(this); dir_liste=new QTreeView(this); dir_model->setRootPath(QDir::rootPath()); dir_liste->setModel(dir_model); I add permission "android.permission.READ_EXTERNAL_STORAGE" and "android.permission.WRITE_EXTERNAL_STORAGE" to the AndroidManifest.xml file. Also i add manual permission : Settings-> apps -> permissions -> storage, for my android app. When i run my app i get an empty :/ directory, with the output message : E libFileDialog.so: inotify_add_watch(/) failed: (Permission denied) How i can use QStandardpaths in my previous code ?
  • Kill aplay inside QT application

    Unsolved
    5
    0 Votes
    5 Posts
    788 Views
    H
    QAudioOutput is actually synchronous cause it blocks GUI when started. Anyway i solved the problem. i call the kill command from GUI not from thread class. it worked this way. thanks for your attention.
  • Error building the application iOS using QtCreator

    Solved
    7
    0 Votes
    7 Posts
    1k Views
    R
    @Wiru Good! Than you for the advice :)
  • Getting GPS data in background mode on iOS with Qt app

    Unsolved
    12
    0 Votes
    12 Posts
    3k Views
    J.HilkJ
    Here's a very good post about iOS "background services" https://stackoverflow.com/a/11044108
  • Side menu without qml

    Unsolved
    2
    0 Votes
    2 Posts
    258 Views
    jsulmJ
    @Dipesh-Sharma Maybe https://doc.qt.io/qt-5/qdockwidget.html
  • QFileSystemModel with QT for android - permission denied problem

    Unsolved
    1
    0 Votes
    1 Posts
    445 Views
    No one has replied
  • How can I share a URL with Qt on iOS?

    Solved
    8
    0 Votes
    8 Posts
    959 Views
    A
    Thanks a lot, that's exactly what I was looking for. Correct code is: void IosShareUtils::share(const QString &text, const QUrl &url) { NSMutableArray *sharingItems = [NSMutableArray new]; if (!text.isEmpty()) { [sharingItems addObject:text.toNSString()]; } if (url.isValid()) { [sharingItems addObject:url.toNSURL()]; } // get the main window rootViewController UIViewController *qtUIViewController = [[UIApplication sharedApplication].keyWindow rootViewController]; UIActivityViewController *activityController = [[UIActivityViewController alloc] initWithActivityItems:sharingItems applicationActivities:nil]; if ( [activityController respondsToSelector:@selector(popoverPresentationController)] ) { // iOS8 activityController.popoverPresentationController.sourceView = qtUIViewController.view; } [qtUIViewController presentViewController:activityController animated:YES completion:nil]; }