Android Question More apps from this developer

hookshy

Well-Known Member
Licensed User
Longtime User
Many times I use the below code to redirect users to see all my apps

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

But this seems to work just because the developer name is not met on google play through the apps names.

Q : How do I force users to see all my apps on google play ?
 

DonManfred

Expert
Licensed User
Longtime User
Example showing all apps from developer MOBZAPP
You could try to extend/change the searchquery (q) to your package-prefix.

assuming you are using com.hookshy.* in your packagenames (com.hookshy.magreatapp for example)
I would try to use

B4X:
Dim fURI As String
fURI = "market://search?q=com.hookshy."
Dim Market As Intent
Market.Initialize(Market.ACTION_VIEW,fURI)      
StartActivity (Market)
or something like that (did not try it)
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
I tried it
B4X:
    Dim fURI As String
  fURI = "market://search?q=com.MOBZAPP"
  Dim Market As Intent
  Market.Initialize(Market.ACTION_VIEW,fURI)    
    StartActivity (Market)
works and shows all apps from MOBZAPP

AND - who have thought -
B4X:
    Dim fURI As String
  fURI = "market://search?q=com.hookshy"
  Dim Market As Intent
  Market.Initialize(Market.ACTION_VIEW,fURI)     
    StartActivity (Market)
shows me all your apps :D

This solution is added to the Code-Snippets too :D
 
Last edited:
Upvote 0

hookshy

Well-Known Member
Licensed User
Longtime User
Upvote 0
Top