已发布的应用程序但 Play 商店未在任何设备上显示更新
Published App but Play Store not showing update on any device
我已将更新后的应用程序发布到 Play 商店。在上传之前,我还更新了内部版本号和名称。但是 Play 商店仍然没有在任何设备上显示更新版本。
进入 build.gradle 并在 defaultConfig 元素中设置版本代码和名称
defaultConfig {
minSdkVersion 9
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
在这里,更新您的版本代码和名称。
This happens when your device has a debug build installed and if you
look your app in playstore then it does not show Update
button
instead of Open
button
解决方法:-
从设备上卸载应用程序并从同一设备上的 Playstore 下载它。
下次在 Playstore 上更新之前,从 Playstore 下载应用程序,当应用程序在 Playstore 上更新时,然后在 Playstore 上检查应用程序,它会显示更新按钮
我已将更新后的应用程序发布到 Play 商店。在上传之前,我还更新了内部版本号和名称。但是 Play 商店仍然没有在任何设备上显示更新版本。
进入 build.gradle 并在 defaultConfig 元素中设置版本代码和名称
defaultConfig {
minSdkVersion 9
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
在这里,更新您的版本代码和名称。
This happens when your device has a debug build installed and if you look your app in playstore then it does not show
Update
button instead ofOpen
button
解决方法:-
从设备上卸载应用程序并从同一设备上的 Playstore 下载它。
下次在 Playstore 上更新之前,从 Playstore 下载应用程序,当应用程序在 Playstore 上更新时,然后在 Playstore 上检查应用程序,它会显示更新按钮