gpt4 book ai didi

android - 使应用程序普遍兼容带和不带摄像头的设备

转载 作者:行者123 更新时间:2023-12-02 09:44:56 26 4
gpt4 key购买 nike

我面临一个奇怪的问题,
我的应用程序可以在有或没有摄像头的设备上完美运行;如果您没有相机,则只有少数功能不可用。

将我的应用程序上传到 Play 商店后,Play 商店排除了一些没有相机的设备,这些设备实际上可以正常工作!

通过使用此权限:

              <uses-permission android:name="android.permission.CAMERA"/>

玩商店自动排除。

有没有人遇到过类似的问题?

抱歉,如果这是重复的(我希望不是)。

最佳答案

来自 docs :

In some cases, the permissions that you request through can affect how your application is filtered by Google Play.

If you request a hardware-related permission — CAMERA, for example — Google Play assumes that your application requires the underlying hardware feature and filters the application from devices that do not offer it.

To control filtering, always explicitly declare hardware features in elements, rather than relying on Google Play to "discover" the requirements in elements. Then, if you want to disable filtering for a particular feature, you can add a android:required="false" attribute to the declaration.


因此,只需将其添加到您的 list 中:
<uses-feature android:name="android.hardware.camera" android:required="false"/>

关于android - 使应用程序普遍兼容带和不带摄像头的设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21390199/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com