Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Cannot deploy qtquick application to HP Slate 7HD

    Mobile and Embedded
    1
    1
    432
    Loading More Posts
    • 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
      algogr last edited by

      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 Reply Quote 0
      • First post
        Last post