No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

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

    Mobile App for Win10

    CLI
    4
    5
    576
    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.
    • C
      Cobeland last edited by

      We are in need to develop an app with Cordova for Win10. Unfortunately I cannot not see any hint in Quasar Cli V1 documentation regarding Win 10. How can we proceed to achieve a mobile app for Win 10 with Quasar Cli V1?

      Thank you for any answer

      1 Reply Last reply Reply Quote 0
      • wcomnisky
        wcomnisky last edited by

        Hello,

        If you run quasar dev --help inside your project dir you will have some hints:

          Description
            Starts the app in development mode (hot-code reloading, error
            reporting, etc)
          Usage
            $ quasar dev -p <port number>
          Options
            --mode, -m       App mode [spa|ssr|pwa|cordova|electron] (default: spa)
            --port, -p       A port number on which to start the application
            --hostname, -H   A hostname to use for serving the application
            --help, -h       Displays this message
        
            Only for Cordova mode:
            --target, -T     (required) App target
                                [android|ios|blackberry10|browser|osx|ubuntu|webos|windows]
            --emulator, -e   (optional) Emulator name
                                Example: iPhone-7, iPhone-X
        

        Try with the following:

        quasar dev -m cordova -T windows
        

        cheers ✌

        1 Reply Last reply Reply Quote 0
        • C
          Cobeland last edited by

          Thanks for the prompt answer. But I tried that already before and during the dev server start I ve got this message:
          “MSBuild v4.0 is not supported, aborting.
          No valid MSBuild was detected for the selected target: AppPackages folder doesn’t exist”
          And then the process stucks.

          1 Reply Last reply Reply Quote 0
          • rstoenescu
            rstoenescu Admin last edited by

            @Cobeland That’s being reported by Cordova. Check the Cordova folks out on this error.

            1 Reply Last reply Reply Quote 0
            • S
              smilosevic last edited by

              Try installing latest Windows SDK from here:
              https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk

              You also need Visual Studio 2015 or above.
              Check cordova docs for full details:
              https://cordova.apache.org/docs/en/latest/guide/platforms/windows/index.html

              From quasar project root you run:
              $ quasar mode add cordova

              and from src-cordova\ you add platform:
              $ cordova platform add windows

              To check if all platform specific requirements are met use:
              $ cordova requirements

              Always build with quasar first if making changes to the project!
              $ quasar build --debug -m cordova -T windows

              1 Reply Last reply Reply Quote 0
              • First post
                Last post