0

我有一个运行 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,并且能够从市场上安装它。

4

2 回答 2

1

您是否碰巧在 android 开发者控制台中将复制保护设置为 ON?看看这个页面。

要复制保护应用程序,请在为应用程序配置发布选项时将复制保护设置为“开”。Google Play 不会在开发者设备或未发布的设备上显示受版权保护的应用程序。

于 2012-07-04T15:30:18.723 回答
0

既然你这么说:

我切换到三星 4.0.4 rom,并且能够从市场上安装它。

我想问题是/是您的自定义 ROM。您是否尝试过其他自定义 ROM?也许这是特定 ROM 的问题,或者 Google Play 无法将其识别为兼容的 SO。

于 2012-07-04T07:01:43.927 回答