应用新版本更新未显示在Google Play上

时间:2018-12-26 08:03:38

标签: android build.gradle

我发布了我的应用程序的新版本,但新版本的更新未在华为P20 8.1.0的Google Play上显示,尽管可以在索尼E6883上以7.1.1 Android版本进行更新。这是build.gradle中的更改:

以前:

compileSdkVersion = 26
buildToolsVersion = "25.0.3"

defaultConfig {
    applicationId "xxxx"
    minSdkVersion 16

    targetSdkVersion 26
    versionCode 42
    versionName "2.5.14"

这是该应用程序的最新版本:

compileSdkVersion = 28
buildToolsVersion = "28.0.3"

defaultConfig {
    applicationId "xxxxx"
    minSdkVersion 16

    targetSdkVersion 28
    versionCode 43
    versionName "2.5.15"
}

将其迁移到API 28后应该进行哪些更改?

3 个答案:

答案 0 :(得分:0)

这个问题现在已经持续了好几天吗? Google Play不会在每部手机上同时更新

答案 1 :(得分:0)

我已经找到了原因,这可能对其他遇到此问题的人有用。我需要在测试设备上都清除Google Play商店应用的缓存:)

为此:

转到“设置”>“应用程序和通知”>“应用程序”>“ Google Play商店”>“卸载更新/清除缓存”(取决于您的设备)

您可能还需要针对Google Play服务应用执行此操作。

答案 2 :(得分:0)

Clearing cache in Play Store can resolve the issue i guess.