Link To Publisher In Google Play Not Working
In my native android app i have a 'more apps' button which I want to link to all my apps on google play. I'm following this link: http://developer.android.com/distribute/tools/pro
Solution 1:
Just to add to this, I also had this issue and found that adding quotation marks around my developer name solved it.
Instead of this:
Intentintent=newIntent(Intent.ACTION_VIEW, Uri.parse("market://search?q=pub:Liam Cottle"));
Change it to this:
Intentintent=newIntent(Intent.ACTION_VIEW, Uri.parse("market://search?q=pub:\"Liam Cottle\""));
The Google Play store app will only show results which match the quoted name exactly... Well, that's what I found anyway.
Solution 2:
We have the same issue and the old link used to work up until now.
The workaround so far is to use
IntentmarketIntent=newIntent(Intent.ACTION_VIEW,Uri.parse("http://play.google.com/store/search?q=Vendor+Name"));
startActivity(marketIntent);
This works, but this is triggering the open with window and it also requires us to update every single app.
Edit: The provided answer by Liam does not work as this is the exact link and quotation we have been using for years, which just recently stopped working, the only working solution is using the web link above.
Post a Comment for "Link To Publisher In Google Play Not Working"