Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.1k Topics 62.5k Posts
  • How do I change the font family in Qt android app

    Unsolved
    6
    0 Votes
    6 Posts
    1k Views
    J.HilkJ
    @Vineela as far as I know, yes. if you set the font somewhere from your quellcode, via StyleSheet or object->setFont(), then the default font won't have any effect on that object.
  • Qt Raspberry Pi Cross Compile

    Unsolved qt 5.12 raspberry pi 3 cross-compile source
    5
    0 Votes
    5 Posts
    3k Views
    JBonillaJ
    Hi, I described the steps I followed in a post over here, https://mechatronicsblog.com/cross-compile-and-deploy-qt-5-12-for-raspberry-pi/ Some people found some issues and posted comments there, the “qendian” issue seems to be related to this bug, there is also a patch there. https://bugreports.qt.io/browse/QTBUG-71945
  • Porting Qt Application (desktop) to Android App

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    Chandras002C
    Hi Hilk, I have seen that link earlier but did not go through in details. Seems that comments for that also very useful. Thanks.
  • iOS Notification Service Extension

    Unsolved
    1
    0 Votes
    1 Posts
    380 Views
    No one has replied
  • Building QML based applications in Raspberry Pi

    Solved
    7
    0 Votes
    7 Posts
    2k Views
    H
    @J.Hilk Thank you :)
  • Qt + admob

    11
    0 Votes
    11 Posts
    6k Views
    deleted57D
    Very late in reply but if you still are interested there is also this library called QtAndroidTools containing various tool for access android features from QML. Currently it still in progress but it contain the tool for add abmob ad in a very easy way. Check the example provided in the project. https://github.com/FalsinSoft/QtAndroidTools
  • Find QLayout within QGridLayout

    Unsolved
    13
    0 Votes
    13 Posts
    1k Views
    P
    @J.Hilk Oh, that's silly :-( Thanks for your advice!
  • Qt Sample for Android

    Solved
    4
    0 Votes
    4 Posts
    561 Views
    jsulmJ
    @comet91-0 Again, first match when searching for "Qt Android" in Google: http://doc.qt.io/qt-5/android.html
  • Mobile Secured Email client Design and Development

    Unsolved
    3
    0 Votes
    3 Posts
    379 Views
    R
    @aha_1980 Thanks for your inputs @aha_1980 .
  • How do I get key pressed using event filtering on Android?

    Unsolved
    1
    0 Votes
    1 Posts
    618 Views
    No one has replied
  • openembedded meta-qt5 license

    Solved
    3
    0 Votes
    3 Posts
    919 Views
    R
    Answering my own question, meta-qt5 is licensed under the MIT License. So I can use it without restriction. P.S.: I thought I couldn't use meta-qt5 without holding a Qt Commercial License because I saw there is a Qt-Company-Commercial license file in the directory licenses. But those are (I guess) licenses for Qt Software, not meta-qt5 layer.
  • How to improve performance on a board without a GPU

    Solved
    10
    0 Votes
    10 Posts
    2k Views
    B
    Done. Thanks for all the help.
  • Qt for Android

    Solved
    8
    0 Votes
    8 Posts
    845 Views
    Pablo J. RoginaP
    @comet91-0 if your issue is solved please don't forget to mark your post as such! Thanks.
  • Qt for Android

    Unsolved
    4
    0 Votes
    4 Posts
    625 Views
    J.HilkJ
    @comet91-0 you need to either install the precompiled Qt-libs for android (from the online installer) or compile it yourself.
  • b2qt-embedded-qt5-image fails to build for intel-corei7-64

    Solved
    5
    0 Votes
    5 Posts
    753 Views
    B
    I ran the bitbake process a second time, and now it succeeded. I guess that some interruptions of the first build process somehow led to inconsistent build caches. For example git-lfs was missing (but this was detected right at the beginning of the build process, so I don‘t think this was the culprit). So I went through the b2qt build instructions once again. But this time I updated the required software packages using $> sudo apt-get install gawk curl git-core diffstat unzip p7zip-full texinfo gcc-multilib build-essential chrpath libsdl1.2-dev xterm gperf bison g++-multilib This resulted in some software packages being added and some existing being upgraded I ran bitbake from a virtual console I am running xubuntu 16.04 LTS and recently my desktop sessions sometime have been closed, when bitbake ran for a while. So I decided not to run bitbake from a GUI terminal, but from a virtual text console. I created a new build environment from scratch I created a new directory for the b2qt build environment and ran the b2qt-init-build-env script from there. So I was sure there was no old stuff laying around. As already said, „$> bitbake b2qt-embedded-qt5-image“ then successfully built the image. Problem solved.
  • Is there a way to test different android setups in parallel?

    Solved android change toolkit
    5
    0 Votes
    5 Posts
    673 Views
    K
    @J-Hilk Yes, I can start two instances of creator and use different settings for Android devices. Not really comfortable, but it is working.
  • QTCreator for QT 5.12 LTS?

    Moved Unsolved
    10
    0 Votes
    10 Posts
    1k Views
    J.HilkJ
    @Amin-Ji sudo apt-get install qtcreator after installation you may(or may not ) need to make a 5.12 kit. Changes are it's automatically detected as well
  • Android deployment... how to deploy images for app to load

    Unsolved
    4
    0 Votes
    4 Posts
    692 Views
    raven-worxR
    @dogbear said in Android deployment... how to deploy images for app to load: It's better if I can just load the images from disk at runtime. and much slower. Anyway you can add the images to the assets folder and access them (even out of QML iirc) with an asset:// url https://community.kde.org/Necessitas/Assets The assets folder can be found in the path you specified via ANDROID_PACKAGE_SOURCE_DIR qmake variable
  • How to use android location manager for extensions?

    Solved android location
    3
    0 Votes
    3 Posts
    980 Views
    K
    @raven-worx OK, thanks. That seems to work.
  • detecting status ("on"/"off") of location services

    Unsolved location qtpositioning android
    4
    0 Votes
    4 Posts
    1k Views
    Pablo J. RoginaP
    @morte said in detecting status ("on"/"off") of location services: This is brobably Qt bug I'd call it working as designed, although the design could differ from your expectations :-) Seriuosly, I guess you can post a feature request to ask for the error status to be cleared once positioning data resumes. For the time being, I guess you need to stop checking for error status once you resume receiving data, or you could even emit a signal of your own once you know data is back again.