链接出版商谷歌播放不工作 [英] link to publisher in google play not working

查看:129
本文介绍了链接出版商谷歌播放不工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的家乡Android应用我有更多应用按钮,我想链接到我在谷歌播放所有的应用程序。

我下面这个链接: http://developer.android .COM /分销/工具/推广/ linking.html#UriSummary

按在上面的链接的文档,我用这个查询:市场://搜Q =酒吧:PUBLISHER_NAME。对于发布者的名称,我用我的名字去掉括号。但是当我运行应用程序,点击更多应用按钮,谷歌的Play商店的应用程序打开并显示如下消息:

:my_name_here酒馆

未找到符合的结果

如果我删除酒馆的网址是这样的:市场://搜Q = PUBLISHER_NAME
那么它显示了我所有的应用程序。但问题是,与我的应用程序一起,也正在显示其他应用这符合我的姓。不知道如何解决这个问题。我想要的是链接到只有我在谷歌Play应用。

我试着在谷歌,搜索计算器,但没有找到解决方案。我测试的的Galaxy Note II。不知道这是否是一个设备特定问题。有没有人碰到这样的事情?谢谢!


解决方案

我们有同样的问题,并用于工作,直到现在老链接。

解决方法到目前为止是使用

 意图marketIntent =新意图(Intent.ACTION_VIEW,Uri.parse(http://play.google.com/store/search?q=Vendor+Name));startActivity(marketIntent);

这工作,但这是与触发窗口中打开,这也要求我们更新每一个应用程序。

编辑:由利亚姆提供的答案不工作,因为这是多年来的确切联系和报价,我们一直在使用,它最近刚刚停止工作,唯一有效的解决方案是使用上面的网页链接

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/promote/linking.html#UriSummary

As per the documentation in the link above, i used this query: market://search?q=pub:publisher_name. For publisher name i used my name without the brackets. BUT when i run the app and click on the "more apps" button, the google play store app opens and shows this message:

No results found for "pub:my_name_here"

If i remove the "pub" the url like this:market://search?q=publisher_name then it shows all my apps. But the problem is that along with my apps, other apps are also being shown which match my surname. Not sure how to resolve this. All i want is to link to only my apps on google play.

I tried searching on Google, StackOverflow but did not find the solution. I tested this on Galaxy Note II. Not sure if it is a device specific issue. Has anyone come across something like this? Thanks!

解决方案

We have the same issue and the old link used to work up until now.

The workaround so far is to use

Intent marketIntent = new Intent(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.

这篇关于链接出版商谷歌播放不工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆