Android Question Linking To My Products On The Play Store

RichardN

Well-Known Member
Licensed User
Longtime User
This used to work rather well:

B4X:
Sub ShowMyAppsOnThePlayStore

     Dim i As Intent
     i.Initialize(i.ACTION_VIEW, "https://play.google.com/store/search?q=%22Bloggs%20Software%22")
     StartActivity(i)
     Return

End Sub

Now it returns a headline of 9 items, 5 of which are other people's products !

Does anybody have a better URL or a better method of doing this?
 

LucaMs

Expert
Licensed User
Longtime User
For me this works:
B4X:
    i.Initialize(i.ACTION_VIEW, "market://search?q=pub:~[xxxxxx]~".Replace("~", QUOTE))
change xxxxxx with your Bloggs Software and remove the square brackets, of course.

BTW, on my smartphones it will be displayed well, on my tablet the activity (?) is very small.


https://play.google.com/store/apps/developer?id=<YOUR_DEVELOPER_ID>
I will try this also ;)
 
Upvote 0

sorex

Expert
Licensed User
Longtime User
when you don't have google play (store) installed or it's messed up the market:// one won't work.

you can use the https one as second option.

the result will be the same when using StartActivity(p.OpenBrowser()) and will show up in an external browser.
 
Upvote 0

sorex

Expert
Licensed User
Longtime User
it depends. some chinese hardware comes with alternatives (samsung store, opera, amazon ...) as google play is blocked overthere.

if not you still have a lot of APK download sites. (with potential risk to download windows or mobile virusses)
 
Upvote 0
Top