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
  • 0 Votes
    3 Posts
    869 Views
    M
    hi, thanks for reply My target system is arm based, Qt version is 4.6.3 for embeded system. I want to config the color value to some special value such as "0xaa" , "0xcc" , etc. But the QColor seem to configue the color in 24bits or 32bits pattern.
  • Qt & Android: even if Release target selected apk name contains 'debug'

    6
    0 Votes
    6 Posts
    4k Views
    Z
    thanks, i will give it a try. I think it is the way how to get signing key: http://developer.android.com/tools/publishing/app-signing.html
  • Qt abandon ARMv5 for android?

    2
    0 Votes
    2 Posts
    1k Views
    S
    As I know, it is a bug of Qt5.1, I have no idea which version of Qt would fix this bug, there are many bugs waiting for Qt5 to fix. "known issues":http://qt-project.org/wiki/Qt_for_Android_known_issues We all know that 5.1 is a technical review, that means we have to deal with some(or many) bugs(find some workaround) when using Qt5.1 on android.
  • Error on Android Development. Please HELP...

    3
    0 Votes
    3 Posts
    2k Views
    F
    Friend to this day have not seen this part to function properly. I stopped using the create avd with qt, I'll cut to the AVDManager.exe
  • 0 Votes
    4 Posts
    3k Views
    SGaistS
    Add a new Qt version pointing to your WEC7 build, create a kit using that one and you should be good to go
  • CrossCompile QT5.1 for BeagleBoard xm

    2
    0 Votes
    2 Posts
    1k Views
    T
    Hello, ~Danilo87 Qt !== QT (QuickTime). QT5.1 is QuickTime version 5.1, but Qt 5.1 is Qt version 5.1 :) Is it critical for you to have Qt Quick support there, on Beagle Board?
  • [Solved]Official Qt 5.1 android application deploy error on device ..

    16
    0 Votes
    16 Posts
    10k Views
    M
    That's what I also said in my latest post. I guess he didnt try it.
  • Android Error (3009 (EGL_BAD_MATCH))

    5
    0 Votes
    5 Posts
    3k Views
    SGaistS
    Hi, Please don't post on multiple sub-forum "Duplicate":https://qt-project.org/forums/viewthread/29978/
  • Qt for Android/iOS/other samples

    2
    0 Votes
    2 Posts
    1k Views
    F
    C:\Qt\Qt5.1.0w32\5.1.0\mingw48_32\examples\
  • 0 Votes
    3 Posts
    2k Views
    F
    incluir in path the java JDKDIR\bin e MINGGWDIR\bin
  • Problem with the framebuffer on an ARM device

    4
    0 Votes
    4 Posts
    6k Views
    S
    I have recently had the same problem. Turned out that I had to include System V IPC option in the kernel.
  • Qt5: custom input contexts gone? How to convert from Qt4 QInputContext?

    1
    0 Votes
    1 Posts
    857 Views
    No one has replied
  • QCA on Android

    4
    0 Votes
    4 Posts
    2k Views
    T
    Yeah, you are right [quote author="FrankiPL" date="1373985487"]Hi, Thanks for reply. Just to clarify, second point would require me to dabble in Java I suspect ? So far I was using pkcs11 keys and certs to encrypt my connection, from my phone, but I was unable to generate key, or CR on the telephone. With QCA is this possible? regards Marek[/quote]
  • Dynamic Language Translation in Qt

    9
    0 Votes
    9 Posts
    23k Views
    A
    Ok so changeEvent is necessary to translate uis...
  • How to change the bit order of the data writen into the framebuffer by qt

    2
    0 Votes
    2 Posts
    815 Views
    SGaistS
    Hi and welcome to devnet, For such a low level question you might better ask on the mailing list, you'll find more developer/maintainer there. This form is more user oriented.
  • Can't display QImage stored and read from sqlite database

    8
    0 Votes
    8 Posts
    6k Views
    SGaistS
    Writing in the root directory is rarely a good idea and not doing anything in case something can fail looks always as an issue to me :) What appends if you do this: @image.fromData(outData, "png");@ ?
  • Notification to the Qt application while USB plug/unplug

    4
    0 Votes
    4 Posts
    3k Views
    S
    Hi Thanks for your reply, Presently My ubuntu dont have libudev , I can install libudev but how my Qt application will cal libudev automatically when usb is pulg/unplug to get hotpluged usb device. And one more thing is already i have libusb API function(libusb_get_device_list) to get fresh usb devices list just i need Qt application should call this function automatically when usb is plug/unplug to update usb devices with out user involvement. Thanks & Reagards Sreeram
  • Ergonomic stylesheet for QCombobox on mobile OS

    4
    0 Votes
    4 Posts
    1k Views
    SGaistS
    Out of the box ? Not any that I know of. I remember of a linux application proposing the kind of interface you are looking for. Not sure but I think you might find it on "kde apps":http://kde-apps.org/
  • Qtjsondb build failed for android

    2
    0 Votes
    2 Posts
    1k Views
    A
    in jsondbpartition.cpp, the following change should resolve the error: << #include <sys/statvfs.h> #ifndef ANDROID include <sys/statvfs.h> #else include <sys/vfs.h> define statvfs statfs #endif I also ran into some other issues during the build: (Changes could be wrapped with #ifdef ANDROID...) qjsondbmodelutils.cpp failed due to "ambiguous overload for 'operator <'. Making the following change resolved that: //return (dLhs->directions[i] ? lhsValue < rhsValue : rhsValue < lhsValue); return (dLhs->directions[i] ? rhsValue > lhsValue : lhsValue > rhsValue); src/daemon/main.cpp failed since lockf and F_TLOCK are not defined. //if (lockf(lfp, F_TLOCK, 0)<0) if (fcntl(lfp, 1, 0)<0) dbserver.cpp failed since '::getpwent': wasn't defined. //#if defined(Q_OS_UNIX) #if defined(Q_OS_UNIX) && !defined(ANDROID)
  • [solved]Qt5.1beta1: Error when trying to compile program in android

    9
    0 Votes
    9 Posts
    6k Views
    F
    looks like a bug already known of the season, simply include the PATH and JAVAHOME MINGWDIR