我很犹豫要不要问这个问题,因为它看起来好像many people have a similar problem,但我没有找到可以解决我的特定实例的解决方案。
我开发了一个 Android 应用 (link to the actual app) 并将其上传到 Play 商店。 Play 商店说
"This app is incompatible with your XT Mobile Network HTC HTC Wildfire S A510b."
当然,那是我开发应用程序的手机,所以它应该兼容。其他设备有人说兼容,有人说不兼容,但我找不到趋势。 (显然我不知道有多少人使用 Android 设备。)
我尝试了以下方法:
<uses-feature android:name="android.hardware.faketouch" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
android.hardware.faketouch
aapt dump badging bin/NZSLDict-release.apk
package: name='com.hewgill.android.nzsldict' versionCode='3' versionName='1.0.2'
sdkVersion:'4'
targetSdkVersion:'4'
uses-feature:'android.hardware.faketouch'
uses-feature-not-required:'android.hardware.touchscreen'
application-label:'NZSL Dictionary'
application-icon-160:'res/drawable/icon.png'
application: label='NZSL Dictionary' icon='res/drawable/icon.png'
launchable-activity: name='com.hewgill.android.nzsldict.NZSLDictionary' label='NZSL Dictionary' icon=''
main
other-activities
supports-screens: 'small' 'normal' 'large'
supports-any-density: 'true'
locales: '--_--'
densities: '160'
为了完整起见,我的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hewgill.android.nzsldict"
android:versionCode="3"
android:versionName="1.0.2">
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="4" />
<uses-feature android:name="android.hardware.faketouch" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<application android:label="@string/app_name"
android:icon="@drawable/icon">
<activity android:name="NZSLDictionary"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".WordActivity" />
<activity android:name=".VideoActivity" />
<activity android:name=".AboutActivity" />
</application>
</manifest>
在 Play 商店的“设备可用性”部分,我可以看到除了“G1 (trout)”和“Touch Viva (opal)”之外的所有 HTC 设备,包括 Wildfire S,都受支持,无论是那些是。实际上我看到“Wildfire S (marvel)”和“Wildfire S A515c (marvelc)”都被列为支持,但我的“Wildfire S A510b”没有特别提到。这种子模型标识符有那么重要吗?我已经能够从 Google Play 将其他几个应用下载到我的手机上,没有任何问题。
此时我没有做的唯一一件事是在上传最新版本(如this comment)后等待 4-6 小时,看看它是否仍然说它与我的手机不兼容.但是,Play 商店页面目前显示的是 1.0.2,这是我上传的最新版本。