【问题标题】:Sudden drop in the reviews on Google Play Store .Not able to get the exact reasonGoogle Play 商店的评论突然下降。无法获得确切原因
【发布时间】:2016-02-08 15:19:48
【问题描述】:

enter image description here我之前在 Play 商店中生产了我的应用程序的 3.7 版本,现在我已经推出更新为 3.7.1 版本,但更新后评论突然下降了 50% 到 60%。经过多次谷歌搜索,我无法找到确切的原因。任何帮助将不胜感激。

提前致谢

【问题讨论】:

  • 这是一个关于编程问题的网站。

标签: android review


【解决方案1】:

我正在为我的应用程序使用以下代码,它运行良好,希望对您有所帮助。

Uri uri = Uri.parse("market://details?id=" + context.getPackageName()); 意图 goToMarket = new Intent(Intent.ACTION_VIEW, uri); // 使用 Play market backstack 计数,按下后退按钮后, // 回到我们的应用程序,我们需要在意图中添加以下标志。

goToMarket.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY | Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET | Intent.FLAG_ACTIVITY_MULTIPLE_TASK);

试试{ 开始活动(去市场); } 捕捉(ActivityNotFoundException e){ startActivity(new Intent(Intent.ACTION_VIEW, uri.parse("http://play.google.com/store/apps/details?id=" + context.getPackageName()))); }

这将与您的应用一起启动 Play 商店,用户可以在那里及时查看。 确保您正确弹出评价我们的任务。

【讨论】:

  • 感谢您的及时回复,上面的代码我已经实现了。它完美地重定向到 PlayStore,因为我已经手动对其进行了多次测试。任何形式的帮助将不胜感激。 @凯蒂
猜你喜欢
  • 1970-01-01
  • 2022-01-08
  • 1970-01-01
  • 2020-07-20
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多