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
  • i solveld

    Unsolved
    2
    0 Votes
    2 Posts
    274 Views
    SGaistS
    Meaning ?
  • problem compiling for android

    Solved
    5
    0 Votes
    5 Posts
    493 Views
    J
    How to upgrade?
  • menu name changing

    Solved
    12
    0 Votes
    12 Posts
    2k Views
    Pablo J. RoginaP
    @ali1377 said in menu name changing: it has been solved so please mark your post as such! Thanks
  • Building Android solution with CMake and QTCreator - cannot parse CMake

    Unsolved
    2
    0 Votes
    2 Posts
    680 Views
    D
    Ok, I know why it doesn't work. QtCreator 4.9 doesn't support CMake with NDK 18 and higher, 4.10 will...
  • How add AdMob in program?

    Unsolved
    10
    0 Votes
    10 Posts
    2k Views
    H
    Qt Firebase works good too: https://github.com/Larpon/QtFirebase
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    24 Views
    No one has replied
  • WebGL in WebEngineView

    Unsolved
    1
    0 Votes
    1 Posts
    218 Views
    No one has replied
  • QDial does not show correclty with QPA linuxfb

    Unsolved
    1
    0 Votes
    1 Posts
    231 Views
    No one has replied
  • In app purchases on iOS / Qt 5.13.0 - provisioning problem

    Solved
    7
    0 Votes
    7 Posts
    828 Views
    SupernaurisS
    @sgaist Maybe at some point. Also, note that I am not 100% sure of what the exact instructions should be - some parts are certainly necessary, while it others might not be.
  • [SOLVED] How to extend QIOSApplicationDelegate with category on ios?

    8
    0 Votes
    8 Posts
    5k Views
    M
    Complete Code: In the .pro: ios { OBJECTIVE_SOURCES = ios/ios_app_delegate.mm } In ios/ios_app_delegate.mm: #import "UIKit/UIKit.h" @interface QIOSApplicationDelegate @end @interface QIOSApplicationDelegate (WoboqApplicationDelegate) @end @implementation QIOSApplicationDelegate (WoboqApplicationDelegate) - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { NSLog(@"launch!"); return YES; } @end
  • Cross compiling QT webengine for RPI0/1 (armv6 target)

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

    Unsolved
    1
    0 Votes
    1 Posts
    21 Views
    No one has replied
  • 0 Votes
    6 Posts
    2k Views
    IMAN4KI
    Seems to be a bug reported here QTBUG-50244 Nobody tried to integrate MySQL for a Raspberry Pi project already ?! no workaround?! Seems strange :(
  • 0 Votes
    4 Posts
    364 Views
    SGaistS
    Hi, Because you are building your application with a Qt For Embedded Linux version and try to start it with a standard build of Qt.
  • Qt Android OpenSSL issues

    Solved
    13
    0 Votes
    13 Posts
    2k Views
    B
    Current test device is Android 9. LG V50 ThinQ
  • How to make touch screen work on cross-compiled EGLFS application (on RPi3)?

    Unsolved
    6
    0 Votes
    6 Posts
    2k Views
    A
    Hi @rrd0, How did you solve this problem? I am having exactly the same problem and none of the proposed solutions that I have found online are working for me
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    11 Views
    No one has replied
  • How to save files under Android/data?

    Unsolved
    4
    1 Votes
    4 Posts
    1k Views
    B
    With these piece of code I have checked all the available locations: qDebug() << "Config path set to:" << configPath; for (int i = 0; i <= static_cast<int>(QStandardPaths::AppConfigLocation); i++) { const QString tmp = QStandardPaths::writableLocation(static_cast<QStandardPaths::StandardLocation>(i)); qDebug() << "Path" << i << tmp; } Seems like Qt cannot save the file where I need to: Path 0 "/data/user/0/org.qtproject.example.mri/files" Path 1 "/storage/emulated/0/Documents" Path 2 "" Path 3 "" Path 4 "/storage/emulated/0/Music" Path 5 "/storage/emulated/0/Movies" Path 6 "/storage/emulated/0/Pictures" Path 7 "/data/user/0/org.qtproject.example.mri/cache" Path 8 "/data/user/0/org.qtproject.example.mri/files" Path 9 "/data/user/0/org.qtproject.example.mri/files" Path 10 "/data/user/0/org.qtproject.example.mri/cache" Path 11 "/storage/emulated/0" Path 12 "/data/user/0/org.qtproject.example.mri/cache" Path 13 "/data/user/0/org.qtproject.example.mri/files/settings" Path 14 "/storage/emulated/0/Download" Path 15 "/data/user/0/org.qtproject.example.mri/cache" Path 16 "/data/user/0/org.qtproject.example.mri/files/settings" Path 17 "/data/user/0/org.qtproject.example.mri/files" Path 18 "/data/user/0/org.qtproject.example.mri/files/settings" Any ideas?
  • Error on cross compiling for RaspberryPi

    Unsolved
    3
    0 Votes
    3 Posts
    447 Views
    M
    by "half an hour", I mean half an hour of compiling. It starts compiling qt. QtCore, QtNetwork etc. are built. Mmm, it looks too much somehow. Could you describe (processor, RAM, OS) your host PC? g++: error: /home/majid/raspi/qt5/lib/libQt5Core.so: No such file or directory In addition, could you please check entries before this one to see if you don't have any previous error, or inversely, to check that indeed such shared object file was created before reaching the point where it stops the compilation process. Yes. Shared objects are created, but not in above directory. they are created in qt source directory (e.g. QtCore is created in /home/majid/raspi/qt-everywhere-src-5.12.3/qtbase/lib/). I tested make install and I got some errors too. But some of the files get copied to qt5 and qt5pi directories as stated in configure options.
  • QT 5.12.4 armv7 application not working if arm64 libs are present

    Solved
    11
    0 Votes
    11 Posts
    4k Views
    T
    @climax You do not need separate ANDROID_PACKAGE_SOURCE_DIRs for each architecture unless you are doing something custom on the java side. The error here was in using abiFilters in the gradle file. Remove that and it works fine. You can verify by picking any android example in Qt Creator and building for both architectures.