0

我的应用程序更新应用程序出现问题,当Google Play商店有新版本上传时,当我重定向到Google Play商店进行版本更新时,没有版本更新选项,仍然显示两个选项卸载或打开。我已经开发了以下代码以进行版本更新。

try {
 startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse("market://details?id="+PACKAGE_NAME)));
}
catch (android.content.ActivityNotFoundException anfe) {
startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse("http://play.google.com/store/apps/details?id="+PACKAGE_NAME)));
}
4

0 回答 0