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. Open PlayStore Programmatically
Qt 6.11 is out! See what's new in the release blog

Open PlayStore Programmatically

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
3 Posts 3 Posters 1.5k 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.
  • NickVN Offline
    NickVN Offline
    NickV
    wrote on last edited by
    #1

    Is there a way to open playstroe by clicking a button into my app>

    1 Reply Last reply
    0
    • sierdzioS Offline
      sierdzioS Offline
      sierdzio
      Moderators
      wrote on last edited by
      #2

      Use JNI to create and call an intent: https://stackoverflow.com/questions/3343432/how-do-i-programmatically-launch-a-specific-application-in-android

      (Z(:^

      1 Reply Last reply
      1
      • GTDevG Offline
        GTDevG Offline
        GTDev
        wrote on last edited by
        #3

        V-Play Engine for Qt-based mobile Apps and Games also provides a ready-made NativeUtils component, which allows to open play-store links by passing the url to the openUrl method.

        Here's a short code snippet:

        import VPlayApps 1.0
        
        App {
          AppButton {
            text: "Open PlayStore"
            onClicked: {
              // this opens the app with id net.vplay.demos.apps.showcaseapp in the playstore
              nativeUtils.openUrl("https://play.google.com/store/apps/details?id=net.vplay.demos.apps.showcaseapp")
            }
          }      
        }
        

        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
        1

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved