【发布时间】:2016-07-13 11:19:39
【问题描述】:
一位用户告诉我,由于设备不兼容,他无法从 Play 商店下载应用。他有一部华为 Mate 8。
应用是:https://play.google.com/store/apps/details?id=com.alitalia.mobile&hl=it
Manifest 排除平板电脑有一些限制:
<compatible-screens>
<!-- normal -->
<screen
android:screenDensity="mdpi"
android:screenSize="normal" />
<screen
android:screenDensity="hdpi"
android:screenSize="normal" />
<screen
android:screenDensity="xhdpi"
android:screenSize="normal" />
<screen
android:screenDensity="480"
android:screenSize="normal" />
<screen
android:screenDensity="640"
android:screenSize="normal" />
<screen
android:screenDensity="560"
android:screenSize="normal" />
<!-- large -->
<screen
android:screenDensity="mdpi"
android:screenSize="large" />
<screen
android:screenDensity="hdpi"
android:screenSize="large" />
<screen
android:screenDensity="xhdpi"
android:screenSize="large" />
<screen
android:screenDensity="480"
android:screenSize="large" />
<screen
android:screenDensity="640"
android:screenSize="large" />
<screen
android:screenDensity="560"
android:screenSize="large" />
</compatible-screens>
<uses-feature
android:name="android.hardware.telephony"
android:required="true" />
谁能提出可能的原因?
【问题讨论】:
标签: android