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. Compiled application in Qt 5.4 takes to open

Compiled application in Qt 5.4 takes to open

Scheduled Pinned Locked Moved Mobile and Embedded
2 Posts 2 Posters 638 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.
  • L Offline
    L Offline
    luiz.lago
    wrote on last edited by
    #1

    Hello,

    I created a project in Qt 5.4 QtQuick, which only shows that message Hello World, I realized that this application taking more than Qt 5.3, but only the Galaxy Tab 3 Samsung SM-T211 model.

    Has anyone experienced this and let me know if there is a solution?

    ===================================
    Code main.qml
    @
    import QtQuick 2.4
    import QtQuick.Window 2.2

    Window {
    visible: true
    MainForm {
    anchors.fill: parent
    mouseArea.onClicked: {
    Qt.quit();
    }

    }
    

    }
    @

    Code MainForm.ui.qml
    @
    import QtQuick 2.3

    Rectangle {
    property alias mouseArea: mouseArea

    width: 360
    height: 360
    
    MouseArea {
        id: mouseArea
        anchors.fill: parent
    }
    
    Text {
        anchors.centerIn: parent
        text: "Hello World"
    }
    

    }
    @

    Best Regards,

    Luiz Lago

    [edit: added missing coding tags @ SGaist]

    1 Reply Last reply
    0
    • L Offline
      L Offline
      laithbasildotnetgmail.com
      wrote on last edited by
      #2

      Mostly, because Qt 5.4 used a newer android SDK ! than it uses in Qt 5.3.
      plus Qt 5.4 has many new features and fixes which mean increase in binary size which leads to a little bit of slower loading ! in some devices you may notice this in others you will not.

      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