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
  • Is QActivity extendable [solved]

    3
    0 Votes
    3 Posts
    1k Views
    T
    All right thanks :)
  • Can QT be published on the app store?

    5
    0 Votes
    5 Posts
    2k Views
    S
    Yes, now they are provide support of dynamic frameworks. Maybe now you can do it.
  • Use multiple applications as a single application

    8
    0 Votes
    8 Posts
    2k Views
    A
    [quote author="SGaist" date="1403005451"]AFAIK it should be possible, using e.g. the framebuffer qpa plugin (so compiling Qt 5) You should look at the "Qt for Embedded Linux Architecture" chapter in Qt's documentation both for 4 and 5. It should answer your questions[/quote] Thanks, I will give it a look.
  • Help with first app with QML

    2
    0 Votes
    2 Posts
    721 Views
    C
    For the first problem i found a little solution, but i don't think is the best: I created a QtQuick Project Added a directory called "pages" and a directory called "plugins" My first qml file "main.qml" (for example) is stirred with c++ classes in the project directory This is the entry qml file that imports others qml files (pages/*.qml) The folder plugins contains c++ extension for QML It's a bad solution? Thanks for help... :)
  • Screen resolution

    Locked
    2
    0 Votes
    2 Posts
    733 Views
    SGaistS
    Hi, Please don't post the almost same thread several times in the forum "Duplicate":http://qt-project.org/forums/viewthread/43844/ Closing this one
  • QStream data serialization problem

    7
    0 Votes
    7 Posts
    2k Views
    G
    I tried setting the stream device to 0 after closing the device but that didn't have any effect. I then changed the code to create a new dataserializer and therefore a new stream every time I load or save data and that seems to have done the trick, thanks for the tip. Greg
  • [SOLVED] Problem with QtEmbedded configuration

    12
    0 Votes
    12 Posts
    4k Views
    McLionM
    If you original problem discussed in this thread has been solved, please mark this thread as Solved in the title and open a new thread for a new topic. This helps others finding solutions to their issues.
  • Test Strategy - Testing color on Qt Ui Screens - Embedded Device

    1
    0 Votes
    1 Posts
    640 Views
    No one has replied
  • QT 4.8.5 libQtNetworkE.so.4

    6
    0 Votes
    6 Posts
    2k Views
    SGaistS
    Then you should look at the BBB's distribution Qt package descriptions. Just an educated guess but, it's probably their version of Qt Embedded that you can install along the standard X11 edition.
  • QCamera Android Crash

    6
    0 Votes
    6 Posts
    2k Views
    metaDomM
    using QML is not an option right now, this should be purely C++/Qt. Grabbing single images from the surface and displaying them in a Label should do the trick :)
  • Qt 5.2 iOS error 65

    2
    0 Votes
    2 Posts
    2k Views
    A
    I fixed the error long ago, but I preferred to share it for anyone that may experience this error. The solution is fairly simple, just ensure that all includes in your project are based on the file location. For example, I have a header located at /src/class/class.h and a source file at /src/class/class.cpp Ensure that in the implementation you use something like this: @ #include "chat.h" @ instead of @#include "/src/class/class.h"@ This applies both when you include a class in the declaration and/or in the implementation. Hope it helps, Alex.
  • [SOLVED] Crash QtActivity with Qt 5.3

    9
    0 Votes
    9 Posts
    7k Views
    J
    The following procedure works for me when porting an existing Qt on Android project from Qt 5.2.1 to Qt 5.3.0: Create a simple Qt on Android project in Qt 5.2.1, using Qt Creator for example. Create the same simple Qt on Android project in Qt 5.3.0, using Qt Creator again. Compare the files generated in step 1 and step 2. Get the differences. Implement the differences into the existing Qt on Android project. Differences have been found especially in file "AndroidManifest.xml" and file "res/values/libs.xml".
  • Rotate to portrait on angstrom (BBB)

    1
    1 Votes
    1 Posts
    616 Views
    No one has replied
  • Qt Embedded Linux with framebuffer

    8
    0 Votes
    8 Posts
    6k Views
    K
    Thanks everybody
  • [SOLVED] Unable to properly cross-compile Qt for embedded Linux

    5
    0 Votes
    5 Posts
    3k Views
    SGaistS
    AFAIK, there should only be one generated
  • Qt5 git build failure on Ubuntu 12.10 ARM on ODROID-X

    23
    0 Votes
    23 Posts
    16k Views
    I
    same problem here with latest qt5.3.0 on a allwinner a10... solved as suggested... thanks a lot! Giampaolo
  • How i can detect type of network connection?

    3
    0 Votes
    3 Posts
    2k Views
    S
    Not sure abt this but have something to find IP addresses(on Windows platform) @ QNetworkInterface *inter = new QNetworkInterface(); QList<QHostAddress> list; list=inter->allAddresses(); QString str; for (int i = 0; i < list.size(); ++i) { str = list.at(i).toString(); } return str; @ [edit: added missing coding tags @ SGaist]
  • Environment variables, search paths, and not finding stuff

    1
    0 Votes
    1 Posts
    679 Views
    No one has replied
  • Building Qt 5.2.1 for WinCE 6.0 Custom SDK with errors

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Ask questions about the cross compiler of Qt4.7.1

    3
    0 Votes
    3 Posts
    2k Views
    S
    Dear Ieealfree, bq. ./bootstrap/libbootstrap.a: could not readsymbols: File in wrong format collect2: ld returned 1 exit status make1: *** [../../../bin/moc] Error 1 This generally can be resolved by deleting all the .o files. To do this do a clean. I also got similar issues while cross-compiling QT 5.2.1 for powerpc. Cheers!!