Android 受支持设备数量的差异

Android 受支持设备数量的差异,android,manifest,google-play,Android,Manifest,Google Play,我们有两个版本的应用程序(pro/lite)。Google play显示了支持pro版本2263和lite版本2496的设备数量。这怎么可能 这是舱单上的差异: 赞成的意见 清淡的 Thx for response考虑到您的所有过滤器都设置为required=false我将假设专业版已付费,并在此处猜测答案: 世界上有2496-2263台设备只在不接受Play Store付费区域的国家发布。Lite版本的过滤器较少,所以我相信它不会出现更多的设备。@Nezam,但他提到那些必需的过滤器为

我们有两个版本的应用程序(pro/lite)。Google play显示了支持pro版本2263和lite版本2496的设备数量。这怎么可能

这是舱单上的差异:

赞成的意见

清淡的


Thx for response

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


世界上有2496-2263台设备只在不接受Play Store付费区域的国家发布。

Lite版本的过滤器较少,所以我相信它不会出现更多的设备。@Nezam,但他提到那些必需的过滤器为:false,尽管专业版有更多的过滤器。他可以用我指出的来尝试一次。这只是猜测。但是,除非你做一个完整的图表对比研究,否则你将无法找出它是否正确。
<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" />