Android Code Snippet Point user to a list of all your app on Google Play

SubName: <noname>

Description: This is a small code snippet you can use to Point a user of your app to a list of all your apps on Google Play.

Code:
In this example i used "com.MOBZAPP" as searchquery. Assuming your app all have the same package-prefix then you can use this prefix to search for your apps.

Example: If your packagenames are com.xyz.appa, ccom.xyz.thisgreatapp, [...]
then you can use com.xyz as the searchquery

B4X:
Dim fURI As String
  fURI = "market://search?q=com.MOBZAPP"
  Dim Market As Intent
  Market.Initialize(Market.ACTION_VIEW,fURI)    
    StartActivity (Market)

Dependencies: none

Tags: myapps, playstore,allapps
 

Inman

Well-Known Member
Licensed User
Longtime User
You can also use market://search?q=pub:<publisher_name> which will make sure only the apps uploaded by the same publisher will be displayed.

For example, market://search?q=pub:Google Inc. will display apps uploaded by Google only.
 
Top