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
  • QTest o Google Test

    Unsolved
    2
    0 Votes
    2 Posts
    418 Views
    SGaistS
    Hi and welcome to devnet, What exact errors are you getting ? What version of Qt are you using ? What platform are you running on ?
  • QUdpSocket multicast receiver timeout detection?

    Solved
    8
    0 Votes
    8 Posts
    2k Views
    S
    I got it working just by changing the format of my timer like this: newtimer = new QTimer(this); newtimer->setInterval(3000); newtimer->setSingleShot(true); connect(newtimer, SIGNAL(timeout()), SLOT(nomsg())); newtimer->start(); and then calling newtimer to start or stop. I had to do this since you cannot start or stop SingleShot timer in this "QTimer::singleShot(200, this, SLOT(updateCaption()));" format.
  • This topic is deleted!

    Locked Unsolved
    2
    0 Votes
    2 Posts
    22 Views
  • Compiling and linking OPENSSL For ANDROID in QT

    Moved Unsolved
    8
    0 Votes
    8 Posts
    1k Views
    ashajgA
    @dheerendra Ok Sir. I ll check for that.
  • Windows - Android direct connection

    Unsolved
    8
    0 Votes
    8 Posts
    2k Views
    K
    @Tabanito Probably the best is to have a note during installation or when you start up the application, in case you want to be thorough. The firewall is prevent attacks from outside in your case. Therefore you need to do it on OS level as recommended by @jsulm However, it is also not possible to knowabout outside attacks and their blockage.
  • Bluetooth Low Energy bug on advertisement update (BlueZ)

    Solved
    9
    0 Votes
    9 Posts
    2k Views
    aha_1980A
    Closing this one as QTBUG-70754 is already fixed. Thanks to @AlexBlasche !
  • How to disable clang warnings in iOS build

    Unsolved
    7
    0 Votes
    7 Posts
    1k Views
    A
    @ekkescorner This is not working, "-Wall" will still override those settings.
  • Android build SDK not defined. Check Android settings.

    Unsolved
    10
    0 Votes
    10 Posts
    7k Views
    S
    OK, after many hours try out I finally find out how you can fix it. Download and use Android NDK r10e separately (not install it through SDK Manager) Download and use Android SDK without Android Studio (download android tools from official site) Qt Preferences will installs all needed packages (build tools , platform tools, sdk tools, platform android-28) Install and use Java JDK 8 (not newer) Please note that installing sdk packages through Android Studio will not be detectable by Qt
  • QT android app creates file but it is invisible from computer

    Solved
    3
    0 Votes
    3 Posts
    512 Views
    D
    @sierdzio Actually no , I've just realized that that piece of code wont work without the rest of the library, so Im going to try to realize how is that specific method called, and how it works.
  • How to set Android kits in Qtcreator?

    Solved
    3
    0 Votes
    3 Posts
    5k Views
    ShaeS
    @koahnig thanks for your reply. oh,sorry I am not read that ,when I choose the older NDK version, QtCreator creat the android kit successfully.
  • SQL Server & Android

    Unsolved
    6
    0 Votes
    6 Posts
    1k Views
    AndySA
    Personally (and I have also done this in my own application) I would use a web service that does the communication to the database for you. This ultimately proves to be much easier to set up and the app stores can easily reject the usage of the SQL drivers being used already or at a later date.
  • Error 129

    Solved
    3
    0 Votes
    3 Posts
    885 Views
    ndt_mikeN
    Thanks so much for putting me in the right 'path'. haha!! The problem wasn't AVRDude it seems like it was with some other games that I installed for my kids, pesky kids.
  • How to adjust evdevtouch sensitivity

    Unsolved
    1
    0 Votes
    1 Posts
    329 Views
    No one has replied
  • Sigh, okay, I suck, I need help with Qt for iOS and packaging my framework

    Solved
    3
    0 Votes
    3 Posts
    942 Views
    C
    The good thing is that Qt for iOS is still static, so I don't have to worry about the Qt dependencies, and for the test client - I've simply replaced it with an XCode based test client (I have to wrap the classes I'm exposing in the framework with Objective-C and Objective-C++ anyhow) and doing my unit tests at that level. I suspect that, as you allude to above, the Qt team moves towards the issues of greatest needs first, and I suspect supporting "embedding custom frameworks into iOS apps" via qmake and Qt Creator is possibly on the list - but not at the top ;). I may tinker with qmake later and try to figure out when/where/how I could accomplish this with scripting during the build lifecycle - if I figure it out I'll update here. Marking solved. Thanks :)
  • Qt5.6.3 Build issue with ARM64

    Unsolved qt5.6 qtbase arm64 aarch64 embedded linux
    7
    0 Votes
    7 Posts
    4k Views
    SGaistS
    AFAIK, the BPI is very close to the Raspberry Pi, you should take a look at this wiki entry. By the way, why are you trying to build an outdated version of Qt ? The current LTS is the 5.9 series with 5.12 around the corner.
  • Enabling eglfs for virtual DRM

    Unsolved
    1
    0 Votes
    1 Posts
    481 Views
    No one has replied
  • Build Android Project

    Unsolved
    2
    0 Votes
    2 Posts
    454 Views
    raven-worxR
    @roscoe_x http://doc.qt.io/qt-5/deployment-android.html#resources
  • Uh, wth? I'm building for iOS, I do NOT have the simulator kit configured...

    Unsolved
    1
    0 Votes
    1 Posts
    379 Views
    No one has replied
  • Set orientation on iOS at runtime

    Unsolved
    1
    0 Votes
    1 Posts
    480 Views
    No one has replied
  • how to stop ringtone in qt android

    Solved
    13
    0 Votes
    13 Posts
    2k Views
    G
    @raven-worx i have been going through android api and discovered that getVolume() was introduced in API 28 its not working because i am using API19 thank you very much