android - 支持的设备数量差异

标签 android manifest google-play

我们有两个版本的应用程序(专业版/精简版)。 Google Play 显示专业版 2263 和精简版 2496 支持的设备数量。这怎么可能?

这是 list 上的差异:

专业版

<supports-screens
    android:smallScreens="true"
    android:normalScreens="true"
    android:largeScreens="true"
    android:xlargeScreens="true"
    android:anyDensity="true"
/>

<uses-feature android:name="android.hardware.telephony" android:required="false" />
<uses-feature android:name="android.hardware.location" android:required="false" />
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
<uses-feature android:name="android.hardware.wifi" android:required="false" />
<uses-feature android:name="android.hardware.bluetooth" android:required="false" />
<uses-feature android:name="android.hardware.screen.portrait" android:required="false" />

精简版

 <supports-screens
    android:smallScreens="true"
    android:normalScreens="true"
    android:largeScreens="true"
    android:xlargeScreens="true"
    android:anyDensity="true" />

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

谢谢回复

最佳答案

考虑到您的所有过滤器都设置为 required=false 我假设 PRO 版本已付费,并在此猜测答案:

全局有 2496 - 2263 款设备仅在不接受 Play 商店付费区域的国家/地区发布。

关于android - 支持的设备数量差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14875126/

相关文章:

android - 我在哪里可以查看 Google Analytics 上跟踪器发送的数据?

android - Android中图像的目录应该是什么

java - 如何注入(inject)spring boot的SpringApplication的mainApplicationClass?

android - 我怎样才能找到为什么 Android 市场在某些手机上过滤我的应用程序

android - 启用 Google Play 应用签名功能后,如何测试应用内支付?

android - 如何在不引起客户端问题的情况下修改 Firebase 数据库结构(用于测试)

scala - 使用 list 实例化 View 有界类型

Java Android 状态栏不会保持隐藏状态

flutter - 如何在我不知情的情况下检查哪些依赖项使用了广告 ID

java - Settings gradle、property gradle 和 build gradle 之间的区别