如何从谷歌播放获取我自己的应用程序列表列表

时间:2014-03-10 06:46:05

标签: android google-play

我在Google Play上发布了一些应用程序,它们也是现场直播。 Google Play会暴露任何其他API吗?这样我就可以在Google Play上列出我的所有应用程序,并在当前应用程序中向用户显示。 提前谢谢!

2 个答案:

答案 0 :(得分:3)

因此,您不存在获取提取应用列表的API。以下是Linking to Your Products的文档,您可以在此页面找到Linking to your product list

答案 1 :(得分:0)

答案如下,对某人有帮助:))

 private void showMyApps(){
            Intent intent = new Intent(Intent.ACTION_VIEW);
            intent.setData(Uri.parse("http://play.google.com/store/search?q=pub:publisher name"));
            startActivity(intent);
        }