我有一个运行 Cyanogen 9 (4.0.4 ICS) 的三星 Galaxy SII(Sprint 版本 Epic 4G Touch)。屏幕密度为默认值。在市场上,它说我的应用程序与 API 8-16+ 兼容,并支持从小到超大的屏幕。由于某种原因,它仍然与我的手机不兼容。这和我的自定义rom有关吗?或者可能是我正在运行 4.0.4 的事实?所有无法安装的用户似乎也在运行自定义 rom。
我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.pwnsro.dayz"
android:versionCode="5"
android:versionName="1.0.4" >
<uses-sdk android:minSdkVersion="8"
android:targetSdkVersion="15" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true" >
</supports-screens>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".DayZActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
还有我的project.properties:
target=android-15
*编辑:似乎只有 ICS 上的 AOSP Roms 用户存在兼容性问题。我切换到三星 4.0.4 rom,并且能够从市场上安装它。