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
Dependencies: none
Tags: myapps, playstore,allapps
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