Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. Unable to create Windows 8.1 Apps Using Qt Libs
Forum Updated to NodeBB v4.3 + New Features

Unable to create Windows 8.1 Apps Using Qt Libs

Scheduled Pinned Locked Moved Installation and Deployment
1 Posts 1 Posters 829 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.
  • H Offline
    H Offline
    haris123
    wrote on last edited by
    #1

    I am trying to test an app I've created with Qt in Windows 8.1. And created deployable binary based on Qt Docs. I've followed how to create package manifest on Windows Dev site, and created appx package using below command.

    @MakeAppx.exe pack /d C:/Users/user1/Documents/MyApp_Win-Sep-27-2014 /p C:/Users/user1/Documents/MyApp.appx@

    Then I've self signed the package using SignTool.exe and these commands.

    @MakeCert /n CN=myComp,O=myComp,L=miami,S=florida,C=us /r /h 0 /eku "1.3.6.1.5.5.7.3.3,1.3.6.1.4.1.311.10.3.13" /e 10/13/2014 /sv vKey.pvk vKey.cer -r

    Pvk2Pfx /pvk vKey.pvk /pi 123 /spc vKey.cer /pfx vKey.pfx /po 123

    SignTool sign /a /v /fd SHA256 /f vKey.pfx /p 123 C:/Users/user1/Documents/MyApp.appx

    Certutil -addStore TrustedPeople vKey.cer@

    But when I try to start my app, it just shows the splash screen only and nothing else.

    Also. here is my AppManifest.xml, which I've created manually I'm not sure what should I specify for Entry Point in this.

    @<?xml version="1.0" encoding="utf-8"?>

      <Package >
    
          <Identity Name="myComp.vsoft.MyAppV1"
    
                   Version="1.0.0.0"
    
                   Publisher="CN=myComp, O=myComp, L=miami, S=florida, C=us" />
    
          <Properties>
    
            <DisplayName>MyApp</DisplayName>
    
            <PublisherDisplayName>myComp</PublisherDisplayName>
    
            <Logo>logo.png</Logo>          
    
            </Properties>
    
           <Prerequisites>
    
            <OSMinVersion>6.1</OSMinVersion>
    
            <OSMaxVersionTested>6.3</OSMaxVersionTested>
    
          </Prerequisites>
    
          <Resources>
    
            <Resource Language="en-us" />
    
          </Resources>          
    
          <Applications>
    
            <Application Id="MyAppV1" Executable="MyApp-V1.exe" EntryPoint="MyApp-V1.App">
    
              <VisualElements DisplayName="MyApp" Description=" My First App"
    
                   Logo="logo.png" SmallLogo="logo.png" 
    
                    ForegroundText="dark" BackgroundColor="#FFFFFF">
    
                 <SplashScreen Image="logo.png" />
    
              </VisualElements>            
    
              </Application>
    
             </Applications>
    
                <Capabilities>
    
                 <Capability Name="internetClient"/>
    
                <Capability Name="musicLibrary"/>
    
                <Capability Name="videosLibrary"/>
    
                <DeviceCapability Name="microphone"/>
    
                <DeviceCapability Name="webcam"/>
    
                </Capabilities>
    
           </Package>@
    
    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