Google Play不允许HP Chromebook 14 G5

发布于 2025-01-26 12:08:29 字数 1290 浏览 3 评论 0原文

我收到了一位客户的电子邮件,说我们的一个应用仅在“一些” Chromebook上安装,而不是在HP Chromebook 14 G5上安装。

我检查了 https://sites.google.com/a/chromium.org/dev/chromium-os/chrome-os/chrome-os-systems-supporting-and android-apps?visit_ID =6377877373388265192668-29268-292903455555555.555555555.5555.5555.5555.555.555。 1

该模型支持Android应用程序。我们的应用程序使用后置摄像头进行QR码扫描仪和GPS,因此我将这些标签添加到清单中,

 <uses-feature
    android:name="android.hardware.touchscreen"
    android:required="false" />

<uses-feature
    android:name="android.hardware.camera"
    android:required="false" />

<uses-feature
    android:name="android.hardware.camera.any"
    android:required="false" />

<uses-feature
    android:name="android.hardware.location"
    android:required="false" />

<uses-feature
    android:name="android.hardware.location.gps"
    android:required="false" />

<queries>
    <package android:name="android.hardware.camera" />
</queries>

这些标签允许该应用程序安装在“一些” Chromebook上,但不是全部。老实说,我有点损失如何进一步诊断这个问题?客户可能没有最新的Chrome OS版本?

任何其他想法或建议将不胜感激。

I received an email from a client saying one of our apps only installs on "some" chromebooks but not on the HP Chromebook 14 G5.

I checked https://sites.google.com/a/chromium.org/dev/chromium-os/chrome-os-systems-supporting-android-apps?visit_id=637873388265192668-2903345055&rd=1

Which states that this model supports Android apps. Our app uses the back camera for a qr code scanner and gps so I added these tags to the manifest

 <uses-feature
    android:name="android.hardware.touchscreen"
    android:required="false" />

<uses-feature
    android:name="android.hardware.camera"
    android:required="false" />

<uses-feature
    android:name="android.hardware.camera.any"
    android:required="false" />

<uses-feature
    android:name="android.hardware.location"
    android:required="false" />

<uses-feature
    android:name="android.hardware.location.gps"
    android:required="false" />

<queries>
    <package android:name="android.hardware.camera" />
</queries>

These tags allow the app to install on "some" chromebooks but not all. Im honestly at a bit of a loss how to diagnose this problem further? Possibly the client hasnt the most updated chrome os version?

Any other ideas or advice would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不再见 2025-02-02 12:08:29

我认为HP Chromebook 14 G5没有GPS,或者特定的Chromebook没有安装GPS驱动程序。您拥有android:quired =“ false”的事实使其显示在受支持的应用程序列表中。

I think the HP Chromebook 14 G5 does not have a GPS or the particular Chromebook does not have a GPS driver installed. The fact that you have that android:required="false" made it show up in the list of supported apps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文