Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. Cannot deploy qtquick application to HP Slate 7HD
Forum Updated to NodeBB v4.3 + New Features

Cannot deploy qtquick application to HP Slate 7HD

Scheduled Pinned Locked Moved Mobile and Embedded
1 Posts 1 Posters 513 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    algogr
    wrote on last edited by
    #1

    Hello,

    I have a problem deploying my application on HP Slate 7HD while there's no problem when deployed to other tablets.
    The error i get wih qt 5.4 beta is
    @
    D/libEGL (30204): loaded /system/lib/egl/libEGL_MRVL.so
    D/libEGL (30204): loaded /system/lib/egl/libGLESv1_CM_MRVL.so
    D/libEGL (30204): loaded /system/lib/egl/libGLESv2_MRVL.so
    D/GC (30204): <tid=30204> OES20 ===> GC Version : GC Ver T7_rls_pxa988_JB42_R1_RC2_GC17.4
    D/GC (30204):
    D/OpenGLRenderer(30204): Enabling debug mode 0
    F/libc (30204): Fatal signal 11 (SIGSEGV) at 0x00000021 (code=1), thread 30220 (le.AlgoIceDroid)
    @

    and the same happens with qt 5.3 and 5.2 but there the last error is
    @
    D/libEGL (29640): loaded /system/lib/egl/libEGL_MRVL.so
    D/libEGL (29640): loaded /system/lib/egl/libGLESv1_CM_MRVL.so
    D/libEGL (29640): loaded /system/lib/egl/libGLESv2_MRVL.so
    D/GC (29640): <tid=29640> OES20 ===> GC Version : GC Ver T7_rls_pxa988_JB42_R1_RC2_GC17.4
    D/GC (29640):
    D/OpenGLRenderer(29640): Enabling debug mode 0
    F/libc (29640): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), thread 29653 (le.AlgoIceDroid)
    D/OpenGLRenderer(29678): Enabling debug mode 0
    F/libc (29678): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), thread 29691 (le.AlgoIceDroid)
    @

    With Qt 5.1 it deploys fine.

    Here is my main.cpp

    @
    #include <QApplication>
    #include <QQmlApplicationEngine>
    #include <QtQml>
    #include "sqlquerymodel.h"
    #include <QPrinterInfo>

    int main(int argc, char *argv[])
    {
    QApplication app(argc, argv);
    QQmlApplicationEngine engine;
    qmlRegisterType<sqlquerymodel>("SqlQueryModel", 1, 0, "SqlQueryModel");
    engine.load(QUrl(QStringLiteral("qrc:///main.qml")));

    return app.exec();
    

    }
    @

    Thanks in advance

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved