hookshy Well-Known Member Licensed User Longtime User May 2, 2015 #1 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 ?
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 May 2, 2015 #2 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
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)
DonManfred Expert Licensed User Longtime User May 2, 2015 #3 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 This solution is added to the Code-Snippets too Last edited: May 2, 2015 Upvote 0
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 This solution is added to the Code-Snippets too
B b4auser1 Well-Known Member Licensed User Longtime User May 2, 2015 #4 Look at: Linking to a Product List Use the format below to link users to a list of apps published by you. The product list lets users see all of the apps from a specific publisher, with ratings, editorial badges, and an Install button for each. on http://developer.android.com/distribute/tools/promote/linking.html Upvote 0
Look at: Linking to a Product List Use the format below to link users to a list of apps published by you. The product list lets users see all of the apps from a specific publisher, with ratings, editorial badges, and an Install button for each. on http://developer.android.com/distribute/tools/promote/linking.html
hookshy Well-Known Member Licensed User Longtime User May 2, 2015 #5 Thanks guys : app link : From a web site: http://play.google.com/store/apps/details?id=<package_name> From an Android app: market://details?id=<package_name> Here's an example: http://play.google.com/store/apps/details?id=com.google.android.apps.maps developer apps links : From a web site: http://play.google.com/store/search?q=pub:<publisher_name> From an Android app: market://search?q=pub:<publisher_name> Here's an example: http://play.google.com/store/search?q=pub:Google Inc. Upvote 0
Thanks guys : app link : From a web site: http://play.google.com/store/apps/details?id=<package_name> From an Android app: market://details?id=<package_name> Here's an example: http://play.google.com/store/apps/details?id=com.google.android.apps.maps developer apps links : From a web site: http://play.google.com/store/search?q=pub:<publisher_name> From an Android app: market://search?q=pub:<publisher_name> Here's an example: http://play.google.com/store/search?q=pub:Google Inc.