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. How can I implement a "rate app in market" feature?

How can I implement a "rate app in market" feature?

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
3 Posts 3 Posters 807 Views 2 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
    li3p
    wrote on last edited by
    #1

    Hi guys,

    I developed a App with Qt5.9. Now I need implement a "rate app" future, which when I clicked a button , then it will open Market app installed on my phone to let me rate the App.

    Any example or idea to help me implement this?

    Thanks in advance.

    raven-worxR 1 Reply Last reply
    0
    • GTDevG Offline
      GTDevG Offline
      GTDev
      wrote on last edited by
      #2

      You can have a look at V-Play Engine for Qt-based mobile games and apps. The Framework offers many components to make app development with Qt easier. You can for example use NativeUtils::openUrl to let users open your app in the iOS or Android store to add a rating:

      import VPlayApps 1.0
      
      App {
        AppButton {
          text: "Rate App"
          onClicked: {
            var url = Theme.isAndroid ? "https://play.google.com/store/apps/details?id=net.vplay.demos.apps.showcaseapp" : "https://itunes.apple.com/at/app/id1040477271?mt=8"
            nativeUtils.openUrl(url)
          }
        }
      }
      

      Cheers,
      GT

      Senior Developer at Felgo - https://felgo.com/qt

      Develop mobile Apps for iOS & Android with Qt
      Felgo is an official Qt Technology Partner

      1 Reply Last reply
      0
      • L li3p

        Hi guys,

        I developed a App with Qt5.9. Now I need implement a "rate app" future, which when I clicked a button , then it will open Market app installed on my phone to let me rate the App.

        Any example or idea to help me implement this?

        Thanks in advance.

        raven-worxR Offline
        raven-worxR Offline
        raven-worx
        Moderators
        wrote on last edited by
        #3

        @li3p
        see this

        --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
        If you have a question please use the forum so others can benefit from the solution in the future

        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