我很犹豫要不要问这个问题,因为看起来很多人都有类似的问题,但我没有找到解决我的特定实例的解决方案。
我开发了一个 Android 应用程序(链接到实际应用程序)并将其上传到 Play 商店。Play商店说
"This app is incompatible with your XT Mobile Network HTC HTC Wildfire S A510b."
当然那是我开发应用程序的手机,所以它应该是兼容的。其他设备有人说兼容,也有人说不兼容,但我找不到趋势。(显然我不认识很多使用 Android 设备的人。)
我尝试了以下方法:
按照这个答案
res/raw
的建议,将一个大文件移出目录。里面唯一的文件是一个约 700 kB 的文本文件,但我把它移到了那里,没有明显的变化。assets/
添加以下两个功能断言:
<uses-feature android:name="android.hardware.faketouch" /> <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
认为也许我的手机没有声称支持通常的
android.hardware.touchscreen
功能,但同样没有明显的变化。
将 APK 上传到 Play 商店时,它报告为活动的唯一过滤器是该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 下载到我的手机上。
在这一点上我唯一没有做的就是在上传最新版本后等待 4-6 小时(如此评论),看看它是否仍然说它与我的手机不兼容。但是,Play 商店页面当前显示的是 1.0.2,这是我上传的最新版本。