Android Google Play 商店“您的设备与此版本不兼容”

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/25738729/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-20 09:41:27  来源:igfitidea点击:

Google Play Store " Your Device isn't compatible with this version"

androidgoogle-play

提问by Amod Gokhale

I see lot of questions about this problem but no definative answer. We are app development company and recently launched 2 new apps on google play store. We tested those apps on Sony Ericsson phone OS ( 2.3.4) with below MinSDkVersion mention in Manifeast.xml file. APK is installed succesfully without any issue. We tried on another phone with OS version 2.3 but shows same problem in google store.

我看到很多关于这个问题的问题,但没有明确的答案。我们是应用程序开发公司,最近在 google Play 商店推出了 2 个新应用程序。我们在索尼爱立信手机操作系统 (2.3.4) 上测试了这些应用程序,Manifeast.xml 文件中提到了以下 MinSDkVersion。APK 安装成功,没有任何问题。我们在另一部装有 2.3 版操作系统的手机上尝试过,但在谷歌商店中也出现了同样的问题。

 <uses-sdk
    android:minSdkVersion="9"
    android:targetSdkVersion="17" />
  • When we visit google play store today we see error "Your Device isn't compatible with this version".
  • We see same message for all other apps that we have developed earlier.Same apps were installed using google play store succesfully week before. all apps are now showing same problem on google play store.
  • 当我们今天访问 google play 商店时,我们看到错误“您的设备与此版本不兼容”。
  • 对于我们之前开发的所有其他应用程序,我们看到相同的消息。一周前使用 Google Play 商店成功安装了相同的应用程序。所有应用程序现在都在 google play store 上显示相同的问题。

Lot of our users are complaining that they don't see our app in play store.

我们的很多用户都抱怨他们在 Play 商店中看不到我们的应用程序。

Is something changed?

有什么改变吗?

Here is another intresting thing. When looked at app through Chrome browser. It says device is compatible.

这是另一个有趣的事情。通过 Chrome 浏览器查看应用程序时。它说设备兼容。

When clicked on install. It starts installing and fails with error "Could not be downloaded due to an error ( 942 )

点击安装时。它开始安装并失败并显示错误“由于错误(942)而无法下载”

回答by Kirtikumar A.

There is chance that You have made some changes that can not work on 2.3 as you have said that It was working fine before week, It means you have made some changes that now not workling for version 2.3 So that It shows " Your Device isn't compatible with this version" as per official website

有可能你做了一些不能在 2.3 上工作的更改,因为你说它在一周前工作正常,这意味着你做了一些现在不适用于 2.3 版的更改,因此它显示“你的设备不是” t与此版本兼容”根据官方网站

is there no such updates from Google

谷歌没有这样的更新吗

For more official details - Android

欲知更多官方详情 - Android

回答by Maveňツ

It seems like your application requires a feature that one of the devices doesn't support.

您的应用程序似乎需要其中一个设备不支持的功能。

You should also check to see if you have the following declared in your AndroidManifest.xml,

您还应该检查是否在您的AndroidManifest.xml,

<uses-sdk
    android:minSdkVersion="9" />

You want your application to work for devices running API 9 and above (not APIs 9 through 17). The code above will ensure that your application works with all devices above API 9. Note that you generally don't want to use the android:maxSdkVersionattribute (as you are currently using it).

您希望您的应用程序适用于运行 API 9 及更高版本(而不是 API 9 到 17)的设备。上面的代码将确保您的应用程序适用于 API 9 以上的所有设备。请注意,您通常不想使用该android:maxSdkVersion属性(因为您目前正在使用它)

update

更新

Try clearing data from download manager (settings-apps-all) and play store, then remove your google account, then go to play store and it will ask you to link your account after that try downloading the app. (That worked for me).

尝试从下载管理器 (settings-apps-all) 和 Play 商店中清除数据,然后删除您的 google 帐户,然后转到 Play 商店,然后尝试下载该应用程序,它会要求您关联您的帐户。(这对我有用)。