0

以下是我的应用程序正在使用的功能:

Screen layouts: SMALL NORMAL LARGE XLARGE

android.hardware.location
android.hardware.screen.portrait
android.hardware.telephony
android.hardware.touchscreen

但是 google play 显示 Galaxy tab2 和其他一些标签不兼容。谁能告诉我可能是什么原因。

4

1 回答 1

3

您要求该android.hardware.telephony功能,这意味着该设备必须能够通过蜂窝网络拨打电话。由于 Nexus 7 和 Galaxy Tab 2 都是平板电脑,它们没有此功能。

如果这不是您的应用程序的明确要求,请<uses-feature>按如下方式制作您的标签:

<uses-feature android:name="android.hardware.telephony" android:required="false" />
于 2012-09-14T10:28:19.907 回答