Android 在google play商店中没有更新选项

Android 在google play商店中没有更新选项,android,android-update-app,Android,Android Update App,我的应用程序中的应用程序更新有问题,当Google play store中有新版本上载时,当我重定向到Google play store进行版本更新时,没有版本更新选项,仍然显示两个选项“卸载”或“打开”。我已经开发了以下版本更新代码 try { startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse("market://details?id="+PACKAGE_NAME))); } catch (android.content.Activi

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

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)));
}

是的,实际上我有降级版本,当服务器给我响应时,我也重定向到play store,因为有新版本可用,但只显示卸载或打开选项。play store版本代码为1.1,我的应用程序版本代码为1.0 play store版本代码=2,版本名称=1.1,我的应用程序版本代码=1,名称=1.0我做错了什么有人建议我吗