我有运行Cyanogen 9(4.0.4 ICS)的三星Galaxy SII(Sprint版Epic 4G Touch)。屏幕密度默认为。在市场上它说我的应用程序与API 8-16 +兼容,并支持小xtra大屏幕。由于某种原因,它仍然与我的手机不兼容。它与我的自定义ROM有关吗?或者可能是我正在运行4.0.4的事实?所有无法安装的用户似乎也在运行自定义roms。
我的宣言:
<?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
*编辑: 似乎只有AOSP Roms on ICS的用户才会遇到兼容性问题。我切换到三星4.0.4 ROM,我能够从市场上安装它。
答案 0 :(得分:1)
您是否碰巧在Android开发者控制台中将复制保护设置为ON?请查看this页面。
要复制保护应用程序,请在为应用程序配置发布选项时将复制保护设置为“打开”。 Google Play不会在开发者设备或未发布的设备上显示受版权保护的应用程序。
答案 1 :(得分:0)
既然你说过这个:
我切换到三星4.0.4 rom,我能够从市场上安装它。
我猜问题是你的自定义ROM。你试过另一个自定义ROM吗?也许这是特定ROM或Google Play无法将其识别为兼容SO的问题。