Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. The geoservices provider is not supported, linuxdeployqt

The geoservices provider is not supported, linuxdeployqt

Scheduled Pinned Locked Moved Unsolved General and Desktop
8 Posts 5 Posters 2.6k Views
  • 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.
  • JamshidJ Offline
    JamshidJ Offline
    Jamshid
    wrote on last edited by Jamshid
    #1

    Hi there,
    I have a project that uses "OSM" map based on qml, I want to create an executable file in Linux using linuxdeployqt. every thing is looks good but when my app runs, won't work! "
    It gives this message in terminal: The geoservices provider is not supported."
    What should I do??
    Thanks.

    Pablo J. RoginaP Q 3 Replies Last reply
    0
    • JamshidJ Jamshid

      Hi there,
      I have a project that uses "OSM" map based on qml, I want to create an executable file in Linux using linuxdeployqt. every thing is looks good but when my app runs, won't work! "
      It gives this message in terminal: The geoservices provider is not supported."
      What should I do??
      Thanks.

      Pablo J. RoginaP Offline
      Pablo J. RoginaP Offline
      Pablo J. Rogina
      wrote on last edited by
      #2

      @Jamshid you should change the title of your post to something like "The geoservices provider is not supported" to better reflect your issue, since you don't have a problem creating and running the executable file in Linux

      Upvote the answer(s) that helped you solve the issue
      Use "Topic Tools" button to mark your post as Solved
      Add screenshots via postimage.org
      Don't ask support requests via chat/PM. Please use the forum so others can benefit from the solution in the future

      JamshidJ 1 Reply Last reply
      0
      • Pablo J. RoginaP Pablo J. Rogina

        @Jamshid you should change the title of your post to something like "The geoservices provider is not supported" to better reflect your issue, since you don't have a problem creating and running the executable file in Linux

        JamshidJ Offline
        JamshidJ Offline
        Jamshid
        wrote on last edited by
        #3

        @Pablo-J-Rogina Thanks, I edited the title.

        1 Reply Last reply
        0
        • JamshidJ Jamshid

          Hi there,
          I have a project that uses "OSM" map based on qml, I want to create an executable file in Linux using linuxdeployqt. every thing is looks good but when my app runs, won't work! "
          It gives this message in terminal: The geoservices provider is not supported."
          What should I do??
          Thanks.

          Pablo J. RoginaP Offline
          Pablo J. RoginaP Offline
          Pablo J. Rogina
          wrote on last edited by
          #4

          @Jamshid you may need to check that the OSM plugin (I don't know the exact filename by heart, I don't have a Qt installation at hand now to check it) is properly deployed in the target machine.
          Are you able to run your application Ok in some other PC? i.e. your development machine

          Upvote the answer(s) that helped you solve the issue
          Use "Topic Tools" button to mark your post as Solved
          Add screenshots via postimage.org
          Don't ask support requests via chat/PM. Please use the forum so others can benefit from the solution in the future

          JamshidJ 1 Reply Last reply
          0
          • Pablo J. RoginaP Pablo J. Rogina

            @Jamshid you may need to check that the OSM plugin (I don't know the exact filename by heart, I don't have a Qt installation at hand now to check it) is properly deployed in the target machine.
            Are you able to run your application Ok in some other PC? i.e. your development machine

            JamshidJ Offline
            JamshidJ Offline
            Jamshid
            wrote on last edited by Jamshid
            #5

            @Pablo-J-Rogina I wanna make an executable file from this qt example:
            (https://qt-blog-uploads.s3.amazonaws.com/wp-content/uploads/2017/05/OsmOffline.zip)

            1 Reply Last reply
            0
            • A Offline
              A Offline
              Arrecio
              wrote on last edited by
              #6

              Probably linuxdeployqt forgot to put "<qtdir>/plugin/geoservices" into the .exe folder.

              1 Reply Last reply
              0
              • JamshidJ Jamshid

                Hi there,
                I have a project that uses "OSM" map based on qml, I want to create an executable file in Linux using linuxdeployqt. every thing is looks good but when my app runs, won't work! "
                It gives this message in terminal: The geoservices provider is not supported."
                What should I do??
                Thanks.

                Q Offline
                Q Offline
                qtop
                wrote on last edited by
                #7

                @Jamshid
                Hi Jamshid
                I ran into the same issue, and the way I fixed it was to copy the plugin manually just before calling linuxdeploy, see below:

                # for some reason, this plugin is not being picked up! so copy it manually.
                install -D ~/Qt/5.15.1/gcc_64/plugins/geoservices/libqtgeoservices_osm.so AppDir/usr/plugins/geoservices/libqtgeoservices_osm.so
                
                # then ...
                ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt --output appimage
                

                I hope this helps, if not reply and I'll see what else I can help with, thanks.

                1 Reply Last reply
                0
                • W Offline
                  W Offline
                  wikonst
                  wrote on last edited by wikonst
                  #8

                  More correct way to do it is add in plugin geoservices entry :

                  ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt,geoservices --output appimage
                  
                  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